From a98e9f7d91d6d5ff3220fe16235df00c2412906c Mon Sep 17 00:00:00 2001 From: Paul Trappitt Date: Sat, 20 Feb 2016 10:21:45 +0800 Subject: [PATCH] exit dry run mode with 0 not 1 --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index a5b06d7..74b1d5e 100644 --- a/app.js +++ b/app.js @@ -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) {