fixed an issue preventing the API generator from running, and batched the git-fetch calls for each es branch
This commit is contained in:
@ -44,6 +44,6 @@ function _spawn(cmd, args, opts, cb) {
|
||||
return cp;
|
||||
}
|
||||
|
||||
_spawn.exec = function (cmd, cb) {
|
||||
return _spawn('/bin/sh', ['-c', cmd], cb);
|
||||
_spawn.exec = function (cmd, opts, cb) {
|
||||
return _spawn('/bin/sh', ['-c', cmd], opts, cb);
|
||||
};
|
||||
Reference in New Issue
Block a user