From 15bf7b1d38b5e4a1b2adf061b000c9171215c328 Mon Sep 17 00:00:00 2001 From: "R. Steve McKown" Date: Thu, 17 Mar 2016 10:01:40 -0600 Subject: [PATCH] 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. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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),) -- 2.39.2