diff --git a/gulpfile.js b/gulpfile.js index b3267112..cdcfdf9c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -27,7 +27,7 @@ var releaseDir = './release/'; // Get platform from commandline args // # -// # gulp []+ Run only for platform(s) (with one of --linux64, --linux32, --osx64, or --win32 --chromeos) +// # gulp []+ Run only for platform(s) (with one of --linux64, --linux32, --osx64, --win32, --win64, or --chromeos) // # function getPlatforms(includeChromeOs) { var supportedPlatforms = ['linux64', 'linux32', 'osx64', 'win32','win64']; @@ -52,7 +52,7 @@ function getPlatforms(includeChromeOs) { if (supportedPlatforms.indexOf(defaultPlatform) > -1) { platforms.push(defaultPlatform); } else { - console.log('Compatible platform not detected, you must specify one as parameter'); + console.log(`Your current platform (${os.platform()}) is not a supported build platform. Please specify platform to build for on the command line.`); process.exit(); } }