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 | |
parent | 9fdbc8bf33418f7b3a3a88df9a04ffee53c8dc66 (diff) | |
download | jquery-b5580a989869f0b702e60704a35e133eeee3e1fc.tar.gz jquery-b5580a989869f0b702e60704a35e133eeee3e1fc.zip |
Use grunt option with grunt.util.spawn, close gh-1255.
-rw-r--r-- | AUTHORS.txt | 1 | ||||
-rw-r--r-- | Gruntfile.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/AUTHORS.txt b/AUTHORS.txt index 580570fb2..b1fa8f62f 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -168,3 +168,4 @@ Steven Benner <admin@stevenbenner.com> Li Xudong <istonelee@gmail.com> Renato Oliveira dos Santos <ros3@cin.ufpe.br> Jason Bedard <jason+jquery@jbedard.ca> +Kyle Robinson Young <kyle@dontkry.com> 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 ) { |