This commit is contained in:
Olinutz6995 2025-07-08 06:38:56 -07:00 committed by GitHub
commit a12bc15715
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

7
.vscode/tasks.json vendored
View file

@ -132,11 +132,12 @@
//Used chmod plugins folder to allow copy-over of files //Used chmod plugins folder to allow copy-over of files
{ {
"label": "chmodplugins", "label": "chmodplugins",
"detail": "chmods plugins folder to prevent perms issues", "detail": "chmods plugins folder to prevent permission issues",
"type": "shell", "type": "shell",
"group": "none", "group": "none",
"command": "ssh ${config:deckuser}@${config:deckip} -p ${config:deckport} ${config:deckkey} 'echo '${config:deckpass}' | sudo -S chmod -R ug+rw ${config:deckdir}/homebrew/plugins/'", "command": "ssh -i ${config:deckkey} ${config:deckuser}@${config:deckip} -p ${config:deckport} 'echo \"${config:deckpass}\" | sudo -S chmod -R ug+rw /home/deck/homebrew/plugins/'",
"problemMatcher": [] "problemMatcher": []
}, }
] ]
} }