From 9d5eef55c19d4c1ab2d39552ababa519a2090b56 Mon Sep 17 00:00:00 2001 From: Rhiannon Morris Date: Sun, 7 Feb 2021 08:26:39 +0100 Subject: [PATCH] new rsync cmd --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c26845b..704b659 100644 --- a/Makefile +++ b/Makefile @@ -102,8 +102,10 @@ REMOTE_DIR ?= gallery .PHONY: upload upload: build - @rsync -rPLzhH --delete -e 'ssh -l $(REMOTE_USER) -i $(IDFILE)' \ - $(BUILDDIR)/ $(HOST):$(REMOTE_DIR)/ + @rsync --recursive --partial --progress --copy-links \ + --compress --human-readable --hard-links --size-only \ + -e 'ssh -l $(REMOTE_USER) -i $(IDFILE)' \ + $(BUILDDIR)/ $(HOST):$(REMOTE_DIR)/ # one arg for extra flags