From 4c5168e0ac5fe9cf46ce00b371589528c2d9c5d7 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Tue, 30 Jun 2020 13:59:28 +0200 Subject: [PATCH] Feat: add rsync exclude in fake_upload --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e8b9409..8176266 100644 --- a/Makefile +++ b/Makefile @@ -88,6 +88,6 @@ rsync_upload: publish fake_upload: html mkdir -p $(FAKEDIR)$(YEARSUBFOLDER) - rsync -P -rvzc --delete $(OUTPUTDIR)/ $(FAKEDIR)$(YEARSUBFOLDER) --cvs-exclude + rsync -P -rvzc --delete $(RSYNC_EXCLUDE) $(OUTPUTDIR)/ $(FAKEDIR)$(YEARSUBFOLDER) --cvs-exclude .PHONY: html help clean regenerate serve serve-global devserver publish ssh_upload rsync_upload