From 49ae30de3bf328816c74d4bf63ef4fca2ea27b70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20=C5=A0imuni=C4=8D?= Date: Wed, 19 Feb 2025 01:29:45 +0100 Subject: [PATCH 1/2] fix: [80] handle tilde path as absolute --- packages/vscode-extension/src/workspace.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vscode-extension/src/workspace.ts b/packages/vscode-extension/src/workspace.ts index 8d5e269..849fcab 100644 --- a/packages/vscode-extension/src/workspace.ts +++ b/packages/vscode-extension/src/workspace.ts @@ -168,7 +168,7 @@ export class Workspace { binPath += '.exe'; } - if (!path.isAbsolute(binPath)) { + if (!path.isAbsolute(binPath) && !binPath.startsWith('~')) { binPath = path.join(this.root, binPath); } From 3818f525b05ec7a63ba3af07aa6c4f8201bf5af0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20=C5=A0imuni=C4=8D?= Date: Wed, 19 Feb 2025 01:44:41 +0100 Subject: [PATCH 2/2] internal: bump vscode-extension patch version --- packages/vscode-extension/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vscode-extension/package.json b/packages/vscode-extension/package.json index 5ca6756..7eb5213 100644 --- a/packages/vscode-extension/package.json +++ b/packages/vscode-extension/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "0.14.0", + "version": "0.14.1", "name": "moon-console", "publisher": "moonrepo", "displayName": "moon console",