From fbd1877f204cfc74e3f09373e3ad5b99e294fef6 Mon Sep 17 00:00:00 2001 From: Joby Harding Date: Sun, 29 Jul 2018 21:06:52 +0100 Subject: [PATCH] MDL-63012 grunt: Update Node version check message --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 4501fc6a5a193..78583d0dbca87 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -37,7 +37,7 @@ module.exports = function(grunt) { var expected = semver.validRange(grunt.file.readJSON('package.json').engines.node); var actual = semver.valid(process.version); if (!semver.satisfies(actual, expected)) { - grunt.fail.fatal('Node version too old. Require ' + expected + ', version installed: ' + actual); + grunt.fail.fatal('Node version not satisfied. Require ' + expected + ', version installed: ' + actual); } // Windows users can't run grunt in a subdirectory, so allow them to set