Merge pull request #1 from Snowworm3000/Snowworm3000-osx-build-support
Fix osx build
This commit is contained in:
commit
bdbb71b692
1 changed files with 12 additions and 1 deletions
13
.vscode/tasks.json
vendored
13
.vscode/tasks.json
vendored
|
@ -61,6 +61,9 @@
|
||||||
"linux": {
|
"linux": {
|
||||||
"command": "${workspaceFolder}/.vscode/build.sh",
|
"command": "${workspaceFolder}/.vscode/build.sh",
|
||||||
},
|
},
|
||||||
|
"osx": {
|
||||||
|
"command": "${workspaceFolder}/.vscode/build.sh",
|
||||||
|
},
|
||||||
// // placeholder for windows logic, not currently planned
|
// // placeholder for windows logic, not currently planned
|
||||||
// "windows": {
|
// "windows": {
|
||||||
// "command": "call ${workspaceFolder}\\.vscode\\build.bat",
|
// "command": "call ${workspaceFolder}\\.vscode\\build.bat",
|
||||||
|
@ -90,7 +93,15 @@
|
||||||
"dependsOn": [
|
"dependsOn": [
|
||||||
"chmodplugins"
|
"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": []
|
"problemMatcher": []
|
||||||
},
|
},
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue