Skip to content

Commit 3f70117

Browse files
fallback to old key
1 parent 6c3e15a commit 3f70117

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editors/code/src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ export class Config {
225225
}
226226

227227
get runnablesExtraEnv() {
228-
const item = this.get<any>("runnables.extraEnv");
228+
const item = this.get<any>("runnables.extraEnv") ?? this.get<any>("runnableEnv");
229229
if (!item) return item;
230230
const fixRecord = (r: Record<string, any>) => {
231231
for (const key in r) {

0 commit comments

Comments
 (0)