From 6dd11f9213a64de03e225edde4cadc53a8e5775c Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Tue, 21 Nov 2017 07:42:53 -0500 Subject: [PATCH] Add personal rsync upload target to Makefile --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Makefile b/Makefile index 020d2e13..f31e61ba 100644 --- a/Makefile +++ b/Makefile @@ -172,6 +172,22 @@ ifeq ($(ARCH), lin) endif +# Obviously this will only work if you have the private keys to my server +UPLOAD_URL = vortico@vcvrack.com:files/ +upload: dist distplugins +ifeq ($(ARCH), mac) + rsync dist/*.dmg $(UPLOAD_URL) -zP +endif +ifeq ($(ARCH), win) + rsync dist/*.exe $(UPLOAD_URL) -P + rsync dist/*.zip $(UPLOAD_URL) -P +endif +ifeq ($(ARCH), lin) + rsync dist/*.zip $(UPLOAD_URL) -zP +endif + rsync plugins/*/dist/*.zip $(UPLOAD_URL) -zP + + # Plugin helpers allplugins: