Skip to content

Commit

Permalink
exit dry run mode with 0 not 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Trappitt committed Feb 20, 2016
1 parent 644081f commit a98e9f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@ plugin.parse().then(function (params) {
}

logger.info('Exiting dry run mode. None of the defintions or service updates have been written to ECS');
return process.exit(1);
return process.exit(0);
})
.catch(function (err) {

Expand Down

0 comments on commit a98e9f7

Please sign in to comment.