Skip to content
This repository has been archived by the owner on Feb 20, 2019. It is now read-only.

Commit

Permalink
Fixing bug in default value for fatal
Browse files Browse the repository at this point in the history
  • Loading branch information
ozten committed Oct 31, 2012
1 parent 467dfde commit 2597275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/awsbox/post_deploy.js
Expand Up @@ -5,7 +5,7 @@ var config = '/home/app/local.json',
devConfig = '/home/app/code/server/config/local.json'; devConfig = '/home/app/code/server/config/local.json';


var reportError = function (err, fatal) { var reportError = function (err, fatal) {
fatal = fatal || true; if (fatal === undefined) fatal = true;
console.error(err); console.error(err);
if (fatal) process.exit(1); if (fatal) process.exit(1);
}; };
Expand Down

0 comments on commit 2597275

Please sign in to comment.