Fix passing message-format after -- in debugging

This commit is contained in:
Lukas Wirth 2024-07-06 17:01:40 +02:00
parent 8f69d98214
commit 7733403056
5 changed files with 15 additions and 11 deletions

View file

@ -78,7 +78,7 @@ export function prepareBaseEnv(base?: Record<string, string>): Record<string, st
export function prepareEnv(
label: string,
runnableArgs: ra.CargoRunnableArgs,
runnableEnvCfg: RunnableEnvCfg,
runnableEnvCfg?: RunnableEnvCfg,
): Record<string, string> {
const env = prepareBaseEnv(runnableArgs.environment);
const platform = process.platform;