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