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() {