From 57b13a3844d2554ac2a485387aa9416110cb74f9 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Tue, 18 Jun 2019 22:01:28 -0600 Subject: [PATCH] remove quotes on borgPrune vars, not sure why --- seafbackup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seafbackup.sh b/seafbackup.sh index 95decb3..29f8fac 100755 --- a/seafbackup.sh +++ b/seafbackup.sh @@ -595,7 +595,7 @@ fi if [ -n "${borgPruneSettings}" ]; then printf "${cyan}[%s] -- [INFO] Executing borg prune operation --${norm}\n" \ "$(stamp)" >> "$logFile" - borg prune --show-rc -v "${borgPruneParams}" "${borgPruneSettings}" \ + borg prune --show-rc -v ${borgPruneParams} ${borgPruneSettings} \ 2>> "$logFile" borgPruneResult="$?" else