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:
parent
b88b430e26
commit
3c508eb258
1 changed files with 1 additions and 1 deletions
2
.vscode/tasks.json
vendored
2
.vscode/tasks.json
vendored
|
@ -68,7 +68,7 @@
|
||||||
"createfolders",
|
"createfolders",
|
||||||
"chmodfolders"
|
"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": []
|
"problemMatcher": []
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue