diff options
| author | Pete Bacon Darwin | 2013-09-17 13:38:52 +0100 | 
|---|---|---|
| committer | Pete Bacon Darwin | 2013-09-17 13:38:52 +0100 | 
| commit | 265f0b52253ffe63715e69b5ba0b0092a8b1fb0f (patch) | |
| tree | cfb0f40f0f3c38423c843fb4df56fb5593b440e6 | |
| parent | 4aa9d2aa1eabcf716e0c9b701b230a9f63b7d424 (diff) | |
| download | angular.js-265f0b52253ffe63715e69b5ba0b0092a8b1fb0f.tar.bz2 | |
fix(build): get promise A+ tests to run on windows
| -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')        }      }, | 
