Skip to content

Commit

Permalink
chore: fix tasks identify file path
Browse files Browse the repository at this point in the history
  • Loading branch information
SheffeyG committed Nov 9, 2024
1 parent ec1e008 commit ac0b269
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@
"command": "ssh",
"args": [
"${config:deckuser}@${config:deckip}",
"-p ${config:deckport}",
"-i ${config:deckkey}",
"-p",
"${config:deckport}",
"-i",
"${config:deckkey}",
"'mkdir -p ${config:deckdir}/homebrew/plugins'",
],
"problemMatcher": []
Expand Down Expand Up @@ -85,8 +87,10 @@
"command": "ssh",
"args": [
"${config:deckuser}@${config:deckip}",
"-p ${config:deckport}",
"-i ${config:deckkey}",
"-p",
"${config:deckport}",
"-i",
"${config:deckkey}",
"'echo '${config:deckpass}' | sudo -S chmod -R ug+rw ${config:deckdir}/homebrew/'",
],
"problemMatcher": []
Expand Down

0 comments on commit ac0b269

Please sign in to comment.