0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2024-11-27 09:50:52 -05:00

fixed gulp shell task args

This commit is contained in:
liabru 2015-12-02 00:12:22 +00:00
parent 131ed5eb37
commit c2b0f30250

View file

@ -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);
});