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