Ensure correct permissions during deployment. (#6)

* Sets files and directories that are being deployed to the Steamdeck to have correct permissions.
This commit is contained in:
D_Pain 2022-07-27 13:14:38 -07:00 committed by GitHub
parent b88b430e26
commit 3c508eb258
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
.vscode/tasks.json vendored
View file

@ -68,7 +68,7 @@
"createfolders",
"chmodfolders"
],
"command": "rsync -azp --delete --rsh='ssh -p ${config:deckport} ${config:deckkey}' --exclude='.git/' --exclude='.github/' --exclude='.vscode/' --exclude='node_modules/' --exclude='src/' --exclude='*.log' --exclude='.gitignore' . deck@${config:deckip}:${config:deckdir}/homebrew/plugins/${workspaceFolderBasename}",
"command": "rsync -azp --delete --chmod=D0755,F0755 --rsh='ssh -p ${config:deckport} ${config:deckkey}' --exclude='.git/' --exclude='.github/' --exclude='.vscode/' --exclude='node_modules/' --exclude='src/' --exclude='*.log' --exclude='.gitignore' . deck@${config:deckip}:${config:deckdir}/homebrew/plugins/${workspaceFolderBasename}",
"problemMatcher": []
},
{