diff options
author | eug-vs <eugene@eug-vs.xyz> | 2021-08-18 22:45:11 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2021-08-18 22:45:11 +0300 |
commit | 0006cefd78ca813503e33294f3a066e4de69c9f0 (patch) | |
tree | a0aa32421bf4562bde6ad5e18fca04adab863e7b | |
parent | 13343b593bcc2509534de297c8a1c1f3ee5f115a (diff) | |
download | eug-vs-xyz-0006cefd78ca813503e33294f3a066e4de69c9f0.tar.gz |
feat: use better rsync options
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ open: $(HTML) deploy: $(HTML) $(MAKE) unlocalize - rsync -zarv --exclude=".git" --exclude="*.md" . $(RSYNC_DESTINATION) + rsync -rtvzP --exclude=".git" --exclude="*.md" . $(RSYNC_DESTINATION) localize: $(HTML) @for file in $^; do sed -i "$(UNLOCALIZE_SEDSTRING) $(LOCALIZE_SEDSTRING)" $$file; done |