diff options
| author | bors <bors@rust-lang.org> | 2023-06-29 07:18:57 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-06-29 07:18:57 +0000 |
| commit | d7f4c2195084665e606b656f9061776e5a8d2953 (patch) | |
| tree | a395f329204dd7b68e08feef679ffe44500b0c8c /editors/code/src/debug.ts | |
| parent | ad434fc4acc071e07dc77d1b78c98e933b776e36 (diff) | |
| parent | 3f70117d69251d01b0ca2de8324eb5dafa8ff193 (diff) | |
| download | rust-d7f4c2195084665e606b656f9061776e5a8d2953.tar.gz rust-d7f4c2195084665e606b656f9061776e5a8d2953.zip | |
Auto merge of #15138 - mohsen-alizadeh:13583-rename-runnableEnv-to-runnables-extraEnv, r=Veykril
13583 rename runnable env to runnables extra env closes #13583
Diffstat (limited to 'editors/code/src/debug.ts')
| -rw-r--r-- | editors/code/src/debug.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/debug.ts b/editors/code/src/debug.ts index cffee1de6af..8fbd427039e 100644 --- a/editors/code/src/debug.ts +++ b/editors/code/src/debug.ts @@ -118,7 +118,7 @@ async function getDebugConfiguration( return path.normalize(p).replace(wsFolder, "${workspaceFolder" + workspaceQualifier + "}"); } - const env = prepareEnv(runnable, ctx.config.runnableEnv); + const env = prepareEnv(runnable, ctx.config.runnablesExtraEnv); const executable = await getDebugExecutable(runnable, env); let sourceFileMap = debugOptions.sourceFileMap; if (sourceFileMap === "auto") { |
