Skip to content

Commit 63ee735

Browse files
committed
getRLibPaths uses substituteVariables
1 parent ce8ae9c commit 63ee735

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ export async function getCranUrl(path: string = '', cwd?: string | URL): Promise
329329
}
330330

331331
export function getRLibPaths(): string | undefined {
332-
return config().get<string[]>('libPaths')?.join('\n');
332+
return config().get<string[]>('libPaths')?.map(substituteVariables).join('\n');
333333
}
334334

335335
// executes an R command returns its output to stdout

0 commit comments

Comments
 (0)