From 5af33db0742972dbc3716f868dabb26e28ba4360 Mon Sep 17 00:00:00 2001 From: Andrew Nicols Date: Tue, 14 Apr 2020 08:15:16 +0800 Subject: [PATCH] MDL-68405 js: Ensure correct exit code for gherkinlint --- Gruntfile.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 1f24ad435c5..faca2e5173a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -375,12 +375,8 @@ module.exports = function(grunt) { formatter.printResults(results); // Report on the results. - // We exit 1 if there is at least one error, otherwise we exit cleanly. - if (results.some(result => result.errors.length > 0)) { - done(1); - } else { - done(0); - } + // The done function takes a bool whereby a falsey statement causes the task to fail. + done(results.every(result => result.errors.length === 0)); }; tasks.startup = function() {