Skip to content

Commit

Permalink
fixed gulp shell task args
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed Dec 2, 2015
1 parent 131ed5e commit c2b0f30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ var build = function(options) {

var shell = function(command, callback) {
var args = process.argv.slice(3).join(' '),
proc = exec(command + args, function(err) {
proc = exec(command + ' ' + args, function(err) {
callback(err);
});

Expand Down

0 comments on commit c2b0f30

Please sign in to comment.