Merge remote-tracking branch 'origin/1.1.x_branch' into 1.2.x_branch

This commit is contained in:
2020-02-11 19:43:32 -06:00

View File

@@ -296,7 +296,9 @@ module.exports.executeAsync = (command, args=[]) => {
};
if (working) {
processOptions.cwd = working;
cmd = './' + cmd;
if (os.platform() !== 'win32') {
cmd = './' + cmd;
}
}
const process = new spawn(cmd, args, processOptions);