Merge pull request #1 from Snowworm3000/Snowworm3000-osx-build-support

Fix osx build
This commit is contained in:
Snowworm 2024-07-31 21:39:01 +01:00 committed by GitHub
commit bdbb71b692
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": []
},
//