Skip to content

Commit

Permalink
corrects missing ssh port for rsync (popsUlfr#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmiqka authored Mar 4, 2023
1 parent 1dd9bb2 commit 16f44fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/' \
Expand Down

0 comments on commit 16f44fc

Please sign in to comment.