From 133a6b1a4893a23a5b50adc9591614958d8959df Mon Sep 17 00:00:00 2001 From: Fuxino Date: Sat, 24 Jun 2017 23:29:39 +0200 Subject: [PATCH] Fix minor bug When using the '-s/--checksum' option, rsync output numbers were not in human readable format. This commit fix this minor issue. --- simple-backup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simple-backup b/simple-backup index 53feb1d..ffe191f 100755 --- a/simple-backup +++ b/simple-backup @@ -300,7 +300,7 @@ function parse_options { ;; -s | --checksum) - OPTIONS="-arcv -H -X -R" + OPTIONS="-arcvh -H -X -R" ;; *)