fix: stabilize embedded runner queueing

This commit is contained in:
Peter Steinberger
2026-01-24 02:05:31 +00:00
parent 309fcc5321
commit 0840029982
3 changed files with 7 additions and 2 deletions

View File

@@ -121,7 +121,8 @@ export function buildMinimalServicePath(options: BuildServicePathOptions = {}):
return env.PATH ?? "";
}
return getMinimalServicePathPartsFromEnv({ ...options, env }).join(path.delimiter);
const delimiter = platform === "win32" ? path.win32.delimiter : path.posix.delimiter;
return getMinimalServicePathPartsFromEnv({ ...options, env }).join(delimiter);
}
export function buildServiceEnvironment(params: {