Skip to content

Commit 0fe26d0

Browse files
Remove & in getLibraryList
Signed-off-by: Sanjula Ganepola <Sanjula.Ganepola@ibm.com>
1 parent a9bd8ca commit 0fe26d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Instance.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ export default class Instance {
206206
const env = workspaceFolder ? (await getEnvConfig(workspaceFolder)) : {};
207207

208208
const librarySetup: ILELibrarySettings = {
209-
currentLibrary: env[`&CURLIB`] || config.currentLibrary,
210-
libraryList: env[`&LIBL`]?.split(` `) || config.libraryList,
209+
currentLibrary: env[`CURLIB`] || config.currentLibrary,
210+
libraryList: env[`LIBL`]?.split(` `) || config.libraryList,
211211
};
212212

213213
return librarySetup;

0 commit comments

Comments
 (0)