From e1ec56da76c3e68ae0c52dcf9a7c05498e59a794 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Wed, 28 Mar 2018 11:56:42 -0400 Subject: [PATCH 1/3] Add dist_upload to MAkefile --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4e204e02..49a922aa 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,10 @@ # Convert relative Rack directory path to absolute -RACK_DIR := $(shell realpath $(RACK_DIR)) +RACK_DIR := $(realpath $(RACK_DIR)) dist_all: for f in repos/*; do $(MAKE) -C "$$f" dist; done + +# Only useful if you have the private keys to the vcvrack.com server +dist_upload: + rsync repos/*/dist/*.zip vcvrack.com:downloads/z -uvz From fed20588261ba7e13ed23466bcf6f0c52b5d555d Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Wed, 28 Mar 2018 11:57:40 -0400 Subject: [PATCH 2/3] Add username to dist_upload --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 49a922aa..650ccca4 100644 --- a/Makefile +++ b/Makefile @@ -7,4 +7,4 @@ dist_all: # Only useful if you have the private keys to the vcvrack.com server dist_upload: - rsync repos/*/dist/*.zip vcvrack.com:downloads/z -uvz + rsync repos/*/dist/*.zip vortico@vcvrack.com:downloads/z -uvz From 68f6294a2b7dde95a05e7101167fe3d3b68e7ee4 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Wed, 28 Mar 2018 11:59:51 -0400 Subject: [PATCH 3/3] Fix rsync URL --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 650ccca4..9a36cfcc 100644 --- a/Makefile +++ b/Makefile @@ -7,4 +7,4 @@ dist_all: # Only useful if you have the private keys to the vcvrack.com server dist_upload: - rsync repos/*/dist/*.zip vortico@vcvrack.com:downloads/z -uvz + rsync repos/*/dist/*.zip vortico@vcvrack.com:downloads/ -uvz