From d352df5d800c5304f9050f2a84cfeb678d521b23 Mon Sep 17 00:00:00 2001 From: Martin M Date: Wed, 17 Apr 2024 07:33:32 +0200 Subject: [PATCH] Update executeCommand.ts - prettier suggestion --- src/lib/executeCommand.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/executeCommand.ts b/src/lib/executeCommand.ts index f812942..52cd446 100644 --- a/src/lib/executeCommand.ts +++ b/src/lib/executeCommand.ts @@ -72,7 +72,7 @@ export function executeCommand( if (isWindows) { if (command === "npm") { command += ".cmd"; - spawnOptions.shell=true; + spawnOptions.shell = true; } else if (command === "node") command += ".exe"; }