From 781a4ace3eafdb5ba94440a6fae4505a274d1693 Mon Sep 17 00:00:00 2001 From: Snowworm <61204146+Snowworm3000@users.noreply.github.com> Date: Wed, 31 Jul 2024 21:31:53 +0100 Subject: [PATCH] fix osx build Minor tweaks to the build commands to fix building on osx --- .vscode/tasks.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index b5968ab..6eb5100 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -61,6 +61,9 @@ "linux": { "command": "${workspaceFolder}/.vscode/build.sh", }, + "osx": { + "command": "${workspaceFolder}/.vscode/build.sh", + }, // // placeholder for windows logic, not currently planned // "windows": { // "command": "call ${workspaceFolder}\\.vscode\\build.bat", @@ -90,7 +93,15 @@ "dependsOn": [ "chmodplugins" ], - "command": "rsync -azp --chmod=D0755,F0755 --rsh='ssh -p ${config:deckport} ${config:deckkey}' out/ ${config:deckuser}@${config:deckip}:${config:deckdir}/homebrew/plugins", + "linux": { + "command": "rsync -azp --chmod=D0755,F0755 --rsh='ssh -p ${config:deckport} ${config:deckkey}' out/ ${config:deckuser}@${config:deckip}:${config:deckdir}/homebrew/plugins", + }, + "windows": { + "command": "rsync -azp --chmod=D0755,F0755 --rsh='ssh -p ${config:deckport} ${config:deckkey}' out/ ${config:deckuser}@${config:deckip}:${config:deckdir}/homebrew/plugins", + }, + "osx": { + "command": "rsync -azp --rsh='ssh -p ${config:deckport} ${config:deckkey}' out/ ${config:deckuser}@${config:deckip}:${config:deckdir}/homebrew/plugins", + }, "problemMatcher": [] }, //