diff --git a/backup.sh b/backup.sh index 99d8436..137c827 100644 --- a/backup.sh +++ b/backup.sh @@ -30,7 +30,7 @@ empty_archive() { } # Accepts two parameters, the archive filename and the file to be added. add_to_archive() { - /usr/bin/env tar --xattrs --append -pvf 2>/dev/null "${1}" "${2}" || \ + /usr/bin/env tar --xattrs --append -pf 2>/dev/null "${1}" "${2}" || \ die "Adding ${2} to ${1} failed!" }