Skip to content

Commit

Permalink
Fixes #12752: Added OS-switch for grunt task "custom", to make use of…
Browse files Browse the repository at this point in the history
… grunt.cmd on Windows operating systems. closes gh-996
  • Loading branch information
queequac authored and mikesherov committed Oct 17, 2012
1 parent 16d996b commit 995f816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grunt.js
Expand Up @@ -230,7 +230,7 @@ module.exports = function( grunt ) {
grunt.log.writeln( "Creating custom build...\n" );

grunt.utils.spawn({
cmd: "grunt",
cmd: process.platform === "win32" ? "grunt.cmd" : "grunt",
args: [ "build:*:*:" + modules, "min" ]
}, function( err, result ) {
if ( err ) {
Expand Down

0 comments on commit 995f816

Please sign in to comment.