From c2b0f302501f081a8f0e4222247e181f8ca7c85e Mon Sep 17 00:00:00 2001 From: liabru Date: Wed, 2 Dec 2015 00:12:22 +0000 Subject: [PATCH] fixed gulp shell task args --- Gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gulpfile.js b/Gulpfile.js index 8ced66d..a96d386 100644 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -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); });