This commit is contained in:
Philipp Kunz 2016-06-07 05:36:37 +02:00
parent 61c8cbc152
commit 0222ab91c3

View File

@ -14,7 +14,7 @@ export let bash = (commandArg:string,retryArg = 2,bareArg = false) => {
"\""
);
} else {
execResult = plugins.shelljs.exec(bareArg);
execResult = plugins.shelljs.exec(commandArg);
}
exitCode = execResult.code;
stdOut = execResult.stdout;