added quotes back to the path

This commit is contained in:
Nikola Jokic
2022-06-08 17:39:37 +02:00
parent 3d0ca83d2d
commit 2aa6f9d9c8

View File

@@ -344,7 +344,7 @@ export async function containerExecStep(
}
if (args.prependPath?.length) {
dockerArgs.push('-e', `PATH=${args.prependPath.join(':')}:$PATH`)
dockerArgs.push('-e', `"PATH=${args.prependPath.join(':')}:$PATH"`)
}
dockerArgs.push(containerId)