From bf772930aa8e25d75fc3634a28b94d337ad975a8 Mon Sep 17 00:00:00 2001 From: Merijn Hendriks Date: Wed, 29 Dec 2021 17:37:52 +0100 Subject: [PATCH] Improve consistency --- Haru.code-workspace | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Haru.code-workspace b/Haru.code-workspace index 2abb07a..e49d686 100644 --- a/Haru.code-workspace +++ b/Haru.code-workspace @@ -25,13 +25,13 @@ "label": "build: server", "type": "shell", "linux": { - "command": "npm --prefix Server run release:any" + "command": "cd Server ; npm run release:any" }, "osx": { - "command": "npm --prefix Server run release:any" + "command": "cd Server ; npm run release:any" }, "windows": { - "command": "npm --prefix Server run build" + "command": "cd Server ; npm run build" } }, {