This commit is contained in:
TingluoHuang
2021-10-14 16:53:58 -04:00
parent cc0d0bed90
commit 1235dc1cea
2 changed files with 4 additions and 2 deletions

View File

@@ -134,7 +134,9 @@ async function run(): Promise<void> {
execArgs.push(execInput.fileName)
core.debug(JSON.stringify(execInput.arguments))
const args = JSON.stringify(execInput.arguments).split(' ')
const args = JSON.stringify(execInput.arguments)
.replace('"', '')
.split(' ')
core.debug(JSON.stringify(args))
execArgs.push(...args)

View File

@@ -1154,7 +1154,7 @@ function run() {
execArgs.push(execInput.jobContainer.containerId);
execArgs.push(execInput.fileName);
core.debug(JSON.stringify(execInput.arguments));
const args = JSON.stringify(execInput.arguments).split(' ');
const args = JSON.stringify(execInput.arguments).replace('"', "").split(' ');
core.debug(JSON.stringify(args));
execArgs.push(...args);
core.debug(JSON.stringify(execArgs));