Skip to content

Commit bf67be3

Browse files
Fix a regression in resolveVariables (#6049)
Co-authored-by: Sean McManus <[email protected]>
1 parent 462a856 commit bf67be3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Extension/src/common.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -366,9 +366,9 @@ export function resolveVariables(input: string | undefined, additionalEnvironmen
366366
} else if (input === match && isArrayOfString(v)) {
367367
newValue = v.join(envDelimiter);
368368
}
369-
if (newValue === undefined) {
370-
newValue = process.env[name];
371-
}
369+
}
370+
if (newValue === undefined) {
371+
newValue = process.env[name];
372372
}
373373
break;
374374
}

0 commit comments

Comments
 (0)