From 0397127de19eb3ede1c18072eae82f0041d8556f Mon Sep 17 00:00:00 2001 From: Ducky Date: Wed, 23 Feb 2022 05:04:12 +0000 Subject: [PATCH] various changes --- usr/local/sbin/zio-backup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/local/sbin/zio-backup b/usr/local/sbin/zio-backup index c359ec1..bf5b79e 100755 --- a/usr/local/sbin/zio-backup +++ b/usr/local/sbin/zio-backup @@ -18,7 +18,6 @@ function backup() { restic \ backup \ - --dry-run \ --iexclude ".cache" \ --iexclude "cache" \ --iexclude "CachedData" \ @@ -34,7 +33,8 @@ function backup() { --repo "$repo" \ --tag "$tag" \ --verbose \ - `[[ -s $args ]] && echo "$args"` "$path" + `[[ -s $args ]] && echo "$args"` "$path" \ + --dry-run fi }