diff options
author | n-peugnet <n.peugnet@free.fr> | 2022-03-25 16:36:11 +0100 |
---|---|---|
committer | n-peugnet <n.peugnet@free.fr> | 2022-03-25 16:36:11 +0100 |
commit | f853bf46319e4c9fe9c8e71e461405128f22d4c7 (patch) | |
tree | a51ece702d3b4fe28c9c43737eef7761886daac8 | |
parent | bde1e333be9a463fed103ebb9963431b06f70604 (diff) | |
download | club1-docs-f853bf46319e4c9fe9c8e71e461405128f22d4c7.tar.gz club1-docs-f853bf46319e4c9fe9c8e71e461405128f22d4c7.zip |
exclude hidden files from rsync publish command
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |