From f853bf46319e4c9fe9c8e71e461405128f22d4c7 Mon Sep 17 00:00:00 2001 From: n-peugnet Date: Fri, 25 Mar 2022 16:36:11 +0100 Subject: exclude hidden files from rsync publish command --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1fdbbdf..b9fe36e 100644 --- a/Makefile +++ b/Makefile @@ -46,8 +46,8 @@ latexpdf: latex info: texinfo $(MAKE) -C $(BUILDDIR)/texinfo/$(LOCALE) -publish: html - rsync -av --del _build/html/ $(USER)@$(PUBHOST):$(PUBDIR) +publish: + rsync -av --del --exclude='.*' _build/html/ $(USER)@$(PUBHOST):$(PUBDIR) # Shinx commands that need locales (builders). $(SPHINXBUILDERS): $(if $(NOTFR),locales/$(LOCALE)/LC_MESSAGES/package.po) -- cgit v1.2.3