about summary refs log tree commit diff
path: root/editors/code/src
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src')
-rw-r--r--editors/code/src/config.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index 13e6bbc1d25..ee9ba7465ab 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -225,7 +225,7 @@ export class Config {
     }
 
     get runnablesExtraEnv() {
-        const item = this.get<any>("runnables.extraEnv");
+        const item = this.get<any>("runnables.extraEnv") ?? this.get<any>("runnableEnv");
         if (!item) return item;
         const fixRecord = (r: Record<string, any>) => {
             for (const key in r) {