13583 rename runnable env to runnables extra env

This commit is contained in:
Mohsen Alizadeh 2023-06-25 17:26:04 -07:00
parent 4a2ceeff0f
commit 6c3e15aaa0
5 changed files with 8 additions and 8 deletions

View file

@ -224,8 +224,8 @@ export class Config {
return this.get<string | undefined>("cargoRunner");
}
get runnableEnv() {
const item = this.get<any>("runnableEnv");
get runnablesExtraEnv() {
const item = this.get<any>("runnables.extraEnv");
if (!item) return item;
const fixRecord = (r: Record<string, any>) => {
for (const key in r) {