vigour-sentinel
Advanced tools
Comparing version 1.2.5 to 1.2.6
{ | ||
"name": "vigour-sentinel", | ||
"version": "1.2.5", | ||
"version": "1.2.6", | ||
"description": "Continuos Testing & Delivery Agent for vigour projects", | ||
@@ -5,0 +5,0 @@ "preferGlobal": "true", |
@@ -28,7 +28,6 @@ var path = require('path') | ||
}) | ||
.then((code) => { | ||
slack.notify(failedTests, !code) | ||
.then(() => log.info('sentinel', 'exiting with code', failedTests)) | ||
.then(() => process.exit(failedTests)) | ||
}) | ||
.then((code) => slack.notify(failedTests, !code)) | ||
.then(() => log.info('sentinel', 'exiting with code', failedTests)) | ||
.then(() => process.exit(failedTests)) | ||
.catch((err) => log.info('sentinel', 'exiting in catch cli', err)) | ||
}, | ||
@@ -51,3 +50,4 @@ | ||
}) | ||
.catch((err) => log.info('sentinel', 'exiting in catch notifyFail', err)) | ||
} | ||
} |
10143