This commit is contained in:
Daniel Lupiañez Casares 2025-04-29 13:56:22 +02:00
parent 7def651231
commit d4e973c6f0
3 changed files with 1 additions and 3 deletions

BIN
dist/index.js generated vendored

Binary file not shown.

BIN
dist/index.js.map generated vendored

Binary file not shown.

View File

@ -103,7 +103,7 @@ class Docker {
const githubHome = path.join(runnerTempPath, '_github_home');
if (!existsSync(githubHome)) mkdirSync(githubHome);
const dockerCommand = `docker run \
return `docker run \
--workdir c:${dockerWorkspacePath} \
--rm \
${ImageEnvironmentFactory.getEnvVarString(parameters)} \
@ -125,8 +125,6 @@ class Docker {
--isolation=${dockerIsolationMode} \
${image} \
powershell c:/steps/entrypoint.ps1`;
return dockerCommand;
}
}