From 0a40aeab95e154a87bb54b71eaffb5398ae54be0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Bene=C5=A1?= Date: Tue, 22 Oct 2024 16:16:26 +0200 Subject: [PATCH] Fix Effekt runner on Windows --- src/extension.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extension.ts b/src/extension.ts index 5ae1fd5..6f7be5c 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -48,7 +48,7 @@ async function runEffektFile(uri: vscode.Uri) { const args = [ uri.fsPath, ...effektManager.getEffektArgs() ]; terminal.sendText("clear"); - terminal.sendText(`"${effektExecutable.path}" ${args.join(' ')}`); + terminal.sendText(`${effektExecutable.path} ${args.join(' ')}`); terminal.show(); }