Skip to content

Commit 6534b7f

Browse files
committed
Fix invalid path on Windows for Vscode extenstion
1 parent bae8999 commit 6534b7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vscode/client/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export function activate(context: ExtensionContext) {
5858
throw new Error('No workspace folder is open');
5959
}
6060
const workspaceFolder = workspaceFolders[0];
61-
const workspaceFolderPath = workspaceFolder.uri.path;
61+
const workspaceFolderPath = workspaceFolder.uri.fsPath;
6262

6363
const serverOptions = () => {
6464
const djlspProcess = spawn(djlspPath, djlspArgs, {

0 commit comments

Comments
 (0)