diff options
| -rw-r--r-- | Gruntfile.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 40ffbd4e..a710ac9d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,5 +1,6 @@ var files = require('./angularFiles').files; var util = require('./lib/grunt/utils.js'); +var path = require('path'); module.exports = function(grunt) { //grunt plugins @@ -235,7 +236,7 @@ module.exports = function(grunt) { stderr:true, failOnError:true }, - command:'./node_modules/.bin/promises-aplus-tests tmp/promises-aplus-adapter++.js' + command:path.normalize('./node_modules/.bin/promises-aplus-tests tmp/promises-aplus-adapter++.js') } }, |
