mirror of
https://github.com/actions/runner.git
synced 2025-12-18 00:07:08 +00:00
.
This commit is contained in:
@@ -42,7 +42,6 @@ async function run(): Promise<void> {
|
|||||||
core.debug(JSON.stringify(execArgs))
|
core.debug(JSON.stringify(execArgs))
|
||||||
|
|
||||||
await exec.exec(execInput.fileName, execArgs, {
|
await exec.exec(execInput.fileName, execArgs, {
|
||||||
cwd: execInput.workingDirectory,
|
|
||||||
env: execInput.environmentVariables
|
env: execInput.environmentVariables
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1562,7 +1562,9 @@ function run() {
|
|||||||
core.debug(JSON.stringify(args));
|
core.debug(JSON.stringify(args));
|
||||||
execArgs.push(...args);
|
execArgs.push(...args);
|
||||||
core.debug(JSON.stringify(execArgs));
|
core.debug(JSON.stringify(execArgs));
|
||||||
yield exec.exec(execInput.fileName, execArgs, { cwd: execInput.workingDirectory, env: execInput.environmentVariables });
|
yield exec.exec(execInput.fileName, execArgs, {
|
||||||
|
env: execInput.environmentVariables
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
run();
|
run();
|
||||||
|
|||||||
Reference in New Issue
Block a user