fix osx build

Minor tweaks to the build commands to fix building on osx
This commit is contained in:
Snowworm 2024-07-31 21:31:53 +01:00 committed by GitHub
parent d69496d4ad
commit 781a4ace3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

13
.vscode/tasks.json vendored
View file

@ -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": []
},
//