diff options
author | Kyle Robinson Young <kyle@dontkry.com> | 2013-04-24 11:56:38 -0700 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2013-05-09 15:14:46 -0400 |
commit | b5580a989869f0b702e60704a35e133eeee3e1fc (patch) | |
tree | 58310b374fd9593a0ad54ec8648d03c9fdc86826 /Gruntfile.js | |
parent | 9fdbc8bf33418f7b3a3a88df9a04ffee53c8dc66 (diff) | |
download | jquery-b5580a989869f0b702e60704a35e133eeee3e1fc.tar.gz jquery-b5580a989869f0b702e60704a35e133eeee3e1fc.zip |
Use grunt option with grunt.util.spawn, close gh-1255.
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 5d41d71f3..8b697cf19 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -260,7 +260,7 @@ module.exports = function( grunt ) { grunt.log.writeln( "Creating custom build...\n" ); grunt.util.spawn({ - cmd: process.platform === "win32" ? "grunt.cmd" : "grunt", + grunt: true, args: [ "build:*:*:" + modules, "pre-uglify", "uglify", "dist" ] }, function( err, result ) { if ( err ) { |