pull/437/head
Frostebite 2022-10-14 01:09:13 +01:00
parent b5de40caa2
commit 71422d6740
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -5726,7 +5726,7 @@ class Docker {
${entrypointBash ? `--entrypoint ${commandPrefix}` : ``} \
${image} \
${entrypointBash ? `-c` : `${commandPrefix} -c`} \
\\"${overrideCommands !== '' ? overrideCommands : `/entrypoint.sh`}\\"`;
"${overrideCommands !== '' ? overrideCommands : `/entrypoint.sh`}"`;
}
static getWindowsCommand(image, parameters) {
const { workspace, actionFolder, unitySerial, gitPrivateToken } = parameters;

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -63,7 +63,7 @@ class Docker {
${entrypointBash ? `--entrypoint ${commandPrefix}` : ``} \
${image} \
${entrypointBash ? `-c` : `${commandPrefix} -c`} \
\\"${overrideCommands !== '' ? overrideCommands : `/entrypoint.sh`}\\"`;
"${overrideCommands !== '' ? overrideCommands : `/entrypoint.sh`}"`;
}
static getWindowsCommand(image: any, parameters: any): string {