From: R. Steve McKown Date: Thu, 17 Mar 2016 16:01:40 +0000 (-0600) Subject: make deploy: have rsync always checksum files X-Git-Url: https://oss.titaniummirror.com/gitweb?p=oss-web.git;a=commitdiff_plain make deploy: have rsync always checksum files Since webber forces the modification and creation times of files, if a change does not change the size of a file rsync will not transfer it as the size and the time are both the same. To ensure a check on contents add the -c (checksum) option to rsync. --- diff --git a/Makefile b/Makefile index e21812d..995ee67 100644 --- a/Makefile +++ b/Makefile @@ -25,10 +25,10 @@ realclean: clean rm -rf out deploy: - rsync -avz --delete out/ $(deployurl) + rsync -cavz --delete out/ $(deployurl) dry: - rsync --dry-run -avz --delete out/ $(deployurl) + rsync --dry-run -cavz --delete out/ $(deployurl) # Automatically create webber.conf: ifeq ($(wildcard webber.conf),)