From 4b87430776fd170ff22e9b7ea1fc8bd2aebf03db Mon Sep 17 00:00:00 2001 From: Elio Struyf Date: Tue, 11 Jul 2023 10:08:14 +0200 Subject: [PATCH] Fix hardcoded reference --- src/commands/Folders.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/Folders.ts b/src/commands/Folders.ts index 2564bf98..8c3701b9 100644 --- a/src/commands/Folders.ts +++ b/src/commands/Folders.ts @@ -182,7 +182,7 @@ export class Folders { ) { staticFolder = staticFolder === '/' || staticFolder === './' - ? Folders.getAbsFilePath('[[workspace]]') + ? Folders.getAbsFilePath(WORKSPACE_PLACEHOLDER) : Folders.getAbsFilePath(staticFolder); const wsFolder = Folders.getWorkspaceFolder(); if (wsFolder) {