remove quotes on borgPrune vars, not sure why

This commit is contained in:
Asif Bacchus 2019-06-18 22:01:28 -06:00
parent 3fd8da1e26
commit 57b13a3844
1 changed files with 1 additions and 1 deletions

View File

@ -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