From f89829ff8529f47b7f72c951f995d5218a296495 Mon Sep 17 00:00:00 2001 From: danzel Date: Wed, 13 Nov 2013 09:53:07 +1300 Subject: [PATCH] Fix build script on windows. --- Jakefile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jakefile.js b/Jakefile.js index 698d8e4c..f7ed1453 100644 --- a/Jakefile.js +++ b/Jakefile.js @@ -17,7 +17,7 @@ var build = require('./build/build.js'); function hint(msg, paths) { return function () { console.log(msg); - jake.exec('./node_modules/jshint/bin/jshint -c ' + paths, + jake.exec('node node_modules/jshint/bin/jshint -c ' + paths, {printStdout: true}, function () { console.log('\tCheck passed.\n'); complete();