diff options
| author | AAGaming <aagaming@riseup.net> | 2024-02-03 00:32:32 -0500 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-02-03 00:32:32 -0500 |
| commit | 6b4a56c7dcf7019302f14fec31ec9a8e06372638 (patch) | |
| tree | 2ff91908c50688d64ff80fce38490e4307cfaa3a | |
| parent | 647f3fe8edd4f65be279cf51d433772b1d124d60 (diff) | |
| download | decky-loader-6b4a56c7dcf7019302f14fec31ec9a8e06372638.tar.gz decky-loader-6b4a56c7dcf7019302f14fec31ec9a8e06372638.zip | |
fix the tasks
| -rw-r--r-- | .vscode/tasks.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 3e0c0ea7..a90d5d11 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -38,7 +38,7 @@ "type": "shell", "group": "none", "detail": "Check for local runs, create a plugins folder", - "command": "rsync -azp --rsh='ssh -p ${config:deckport} ${config:deckkey}' requirements.txt deck@${config:deckip}:${config:deckdir}/homebrew/dev/pluginloader/requirements.txt && ssh deck@${config:deckip} -p ${config:deckport} ${config:deckkey} 'python -m ensurepip && python -m pip install --upgrade pip && python -m pip install --upgrade setuptools && python -m pip install -r ${config:deckdir}/homebrew/dev/pluginloader/requirements.txt'", + "command": "rsync -azp --rsh='ssh -p ${config:deckport} ${config:deckkey}' backend/requirements.txt deck@${config:deckip}:${config:deckdir}/homebrew/dev/pluginloader/backend/requirements.txt && ssh deck@${config:deckip} -p ${config:deckport} ${config:deckkey} 'python -m ensurepip && python -m pip install --upgrade --break-system-packages pip && python -m pip install --break-system-packages --upgrade setuptools && python -m pip install --break-system-packages -r ${config:deckdir}/homebrew/dev/pluginloader/backend/requirements.txt'", "problemMatcher": [] }, { @@ -105,7 +105,7 @@ "detail": "Deploy dev PluginLoader to deck", "type": "shell", "group": "none", - "command": "rsync -azp --delete --rsh='ssh -p ${config:deckport} ${config:deckkey}' --exclude='.git/' --exclude='.github/' --exclude='.vscode/' --exclude='frontend/' --exclude='dist/' --exclude='contrib/' --exclude='*.log' --exclude='requirements.txt' --exclude='backend/__pycache__/' --exclude='.gitignore' . deck@${config:deckip}:${config:deckdir}/homebrew/dev/pluginloader", + "command": "rsync -azp --delete --rsh='ssh -p ${config:deckport} ${config:deckkey}' --exclude='.git/' --exclude='.github/' --exclude='.vscode/' --exclude='frontend/' --exclude='dist/' --exclude='contrib/' --exclude='*.log' --exclude='requirements.txt' --exclude='**/__pycache__/' --exclude='.gitignore' . deck@${config:deckip}:${config:deckdir}/homebrew/dev/pluginloader", "problemMatcher": [] }, // RUN |
