Skip to content

Commit

Permalink
cli: fix run prod command
Browse files Browse the repository at this point in the history
  • Loading branch information
dmstern committed Nov 26, 2018
1 parent 3c38d46 commit 1c61c62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const logFiles = {
ui: path.join(__dirname, pm2Config.runServer.cwd || '', pm2Config.runServer.log),
server: path.join(__dirname, pm2Config.serveUIStatic.cwd || '', pm2Config.serveUIStatic.log),
};
const startCommand = 'prod';
const startCommand = 'run prod';
const programm = 'npmfrog';
const firstArg = process.argv[2];
const command = firstArg === 'stop' ? 'stop' : startCommand;
Expand Down

0 comments on commit 1c61c62

Please sign in to comment.