Skip to content

Commit

Permalink
Merge pull request #10 from domenic/forever
Browse files Browse the repository at this point in the history
Fixing forever command line.
  • Loading branch information
arunoda committed Apr 7, 2012
2 parents 4fc3304 + f251c2d commit 25b5213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/deployer.js
Expand Up @@ -79,7 +79,7 @@ function Deployer() {

var outLogs = path.resolve(logpath, appname + '.log');
var errLogs = path.resolve(logpath, appname + '.err.log');
var appStartCommad = 'forever stop ' + startScript + ' && SL_NAME=' + appname + ' forever start -o ' + outLogs + ' -e ' + errLogs + ' -a ' + startScript;
var appStartCommad = 'forever stop ' + startScript + ' && SL_NAME=' + appname + ' forever start -a -o ' + outLogs + ' -e ' + errLogs + ' ' + startScript;

self.executeIfExists(location, startScript, appStartCommad, afterAppStarted);
} else {
Expand Down

0 comments on commit 25b5213

Please sign in to comment.