pull/437/head
Frostebite 2022-10-13 23:18:12 +01:00
parent f86324e7c5
commit bdb5342521
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -5727,7 +5727,7 @@ class Docker {
--volume "${actionFolder}/platforms/ubuntu/entrypoint.sh:/entrypoint.sh:z" \
${sshAgent ? `--volume ${sshAgent}:/ssh-agent` : ''} \
${sshAgent ? '--volume /home/runner/.ssh/known_hosts:/root/.ssh/known_hosts:ro' : ''} \
${entrypointBash ? `--entrypoint ${commandPrefix} ` : ``} \
${entrypointBash ? `--entrypoint "${commandPrefix} -c"` : ``} \
${image} \
${!entrypointBash ? `${commandPrefix} -c ` : ``} \
"${overrideCommands !== '' ? overrideCommands : `/entrypoint.sh`}"`;

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -60,7 +60,7 @@ class Docker {
--volume "${actionFolder}/platforms/ubuntu/entrypoint.sh:/entrypoint.sh:z" \
${sshAgent ? `--volume ${sshAgent}:/ssh-agent` : ''} \
${sshAgent ? '--volume /home/runner/.ssh/known_hosts:/root/.ssh/known_hosts:ro' : ''} \
${entrypointBash ? `--entrypoint ${commandPrefix} ` : ``} \
${entrypointBash ? `--entrypoint "${commandPrefix} -c"` : ``} \
${image} \
${!entrypointBash ? `${commandPrefix} -c ` : ``} \
"${overrideCommands !== '' ? overrideCommands : `/entrypoint.sh`}"`;