summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorkmiqka <6089748+kmiqka@users.noreply.github.com>2023-03-04 03:47:26 +0100
committerGitHub <noreply@github.com>2023-03-03 18:47:26 -0800
commit16f44fc8b127b68a864678115c7e165a51691f63 (patch)
tree349e77c5d1ba5da118fed9b0633e21b65b38bc0a /Makefile
parent1dd9bb21b6571c878d29f48372ca02f0471dca49 (diff)
downloaddecky-bazzite-buddy-16f44fc8b127b68a864678115c7e165a51691f63.tar.gz
decky-bazzite-buddy-16f44fc8b127b68a864678115c7e165a51691f63.zip
corrects missing ssh port for rsync (#20)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d9233d0..053af44 100644
--- a/Makefile
+++ b/Makefile
@@ -51,7 +51,7 @@ deploy-steamdeck: ## Deploy plugin build to steamdeck
@echo "+ $@"
@ssh $(DECK_USER)@$(DECK_HOST) -p $(DECK_PORT) -i $(DECK_KEY) \
'chmod -v 755 $(DECK_HOME)/homebrew/plugins/ && mkdir -p $(DECK_HOME)/homebrew/plugins/$(PLUGIN_FOLDER)'
- @rsync -azp --delete --progress -e "ssh -i $(DECK_KEY)" \
+ @rsync -azp --delete --progress -e "ssh -p $(DECK_PORT) -i $(DECK_KEY)" \
--chmod=Du=rwx,Dg=rx,Do=rx,Fu=rwx,Fg=rx,Fo=rx \
--exclude='.git/' \
--exclude='.github/' \