mirror of
https://github.com/actions/runner.git
synced 2025-12-13 00:36:29 +00:00
Fix PrependPath format to be array instead of a concatenated string (#1948)
* Fix prependPath format
This commit is contained in:
@@ -101,7 +101,7 @@ namespace GitHub.Runner.Worker.Container.ContainerHooks
|
||||
EntryPointArgs = entryPointArgs.Split(' ').Select(arg => arg.Trim()),
|
||||
EntryPoint = entryPoint,
|
||||
EnvironmentVariables = environmentVariables,
|
||||
PrependPath = prependPath,
|
||||
PrependPath = context.Global.PrependPath.Reverse<string>(),
|
||||
WorkingDirectory = workingDirectory,
|
||||
},
|
||||
State = context.Global.ContainerHookState
|
||||
|
||||
Reference in New Issue
Block a user