diff options
author | François-Xavier Carton <fx.carton91@gmail.com> | 2020-10-26 17:15:10 +0100 |
---|---|---|
committer | François-Xavier Carton <fx.carton91@gmail.com> | 2020-10-26 17:15:10 +0100 |
commit | 70c5ec89d6e924cf9896809865f49a7ee839ab93 (patch) | |
tree | f7cf3a759dbdd73aa8c82ec9d4dbe8c061acb116 /blogit | |
parent | 69a492af19a01838fffb20e1f18a4af5b2b0a88c (diff) |
Support custom rsync options
Diffstat (limited to 'blogit')
-rwxr-xr-x | blogit | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ init: build: blog/index.html tagpages $(patsubst articles/%,blog/%.html,$(ARTICLES)) deploy: build - rsync -rLtvz blog/ data/ $(BLOG_REMOTE) + rsync -rLtvz $(BLOG_RSYNC_OPTS) blog/ data/ $(BLOG_REMOTE) clean: rm -rf blog tags |