mirror of
https://github.com/actions/runner.git
synced 2025-12-12 15:13:30 +00:00
.
This commit is contained in:
@@ -133,10 +133,7 @@ async function run(): Promise<void> {
|
|||||||
execArgs.push(execInput.jobContainer.containerId)
|
execArgs.push(execInput.jobContainer.containerId)
|
||||||
execArgs.push(execInput.fileName)
|
execArgs.push(execInput.fileName)
|
||||||
|
|
||||||
core.debug(JSON.stringify(execInput.arguments))
|
const args = (<string>execInput.arguments).split(' ')
|
||||||
const args = JSON.stringify(execInput.arguments)
|
|
||||||
.replace('"', '')
|
|
||||||
.split(' ')
|
|
||||||
core.debug(JSON.stringify(args))
|
core.debug(JSON.stringify(args))
|
||||||
|
|
||||||
execArgs.push(...args)
|
execArgs.push(...args)
|
||||||
|
|||||||
@@ -1153,8 +1153,7 @@ function run() {
|
|||||||
}
|
}
|
||||||
execArgs.push(execInput.jobContainer.containerId);
|
execArgs.push(execInput.jobContainer.containerId);
|
||||||
execArgs.push(execInput.fileName);
|
execArgs.push(execInput.fileName);
|
||||||
core.debug(JSON.stringify(execInput.arguments));
|
const args = execInput.arguments.split(' ');
|
||||||
const args = JSON.stringify(execInput.arguments).replace('"', "").split(' ');
|
|
||||||
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));
|
||||||
|
|||||||
Reference in New Issue
Block a user