From 511adc84de3b5844c4f46a374491262c96862a4a Mon Sep 17 00:00:00 2001 From: Timur Demin Date: Tue, 4 Jun 2019 00:55:29 +0500 Subject: [PATCH] Make the output from tar less verbose --- backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!" }