Skip to content

Commit 3c508eb

Browse files
authored
Ensure correct permissions during deployment. (popsUlfr#6)
* Sets files and directories that are being deployed to the Steamdeck to have correct permissions.
1 parent b88b430 commit 3c508eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"createfolders",
6969
"chmodfolders"
7070
],
71-
"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}",
71+
"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}",
7272
"problemMatcher": []
7373
},
7474
{

0 commit comments

Comments
 (0)