Revert args mode

This commit is contained in:
Paul Hatcherian 2020-10-06 21:29:12 -04:00
parent 48bb665d5c
commit ae095094f7

View file

@ -14,7 +14,7 @@ const cmd = async (command, ...args) => {
stderr: (data) => { errors += data.toString(); }
};
await exec.exec(command + args.map(a => ` ${a}`).join(' '), [], options)
await exec.exec(command, args, options)
.catch(err => { core.info(`The command '${command} ${args.join(' ')}' failed: ${err}`); });
if (errors !== '') {