diff --git a/borgbackup.sh b/borgbackup.sh index 55fa667..896f0a4 100755 --- a/borgbackup.sh +++ b/borgbackup.sh @@ -56,7 +56,7 @@ exclude() { # Backup the most important directories into an archive named after # the machine this script is currently running on: -borg_command=("create" "--verbose" "--filter AME" "--list" "--stats" "--show-rc" "--compression lz4" "--exclude-caches") +borg_command=("create" "--verbose" "--filter=AME" "--list" "--stats" "--show-rc" "--compression lz4" "--exclude-caches") borg_command+=($(exclude)) borg_command+=("::backup-{hostname}-{now}" "${BORG_TARGETS[@]}")