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:
parent
131ed5eb37
commit
c2b0f30250
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue