summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbackup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/backup.sh b/backup.sh
index 2301ce9..7b07c63 100755
--- a/backup.sh
+++ b/backup.sh
@@ -140,7 +140,7 @@ backup_borg() {
# Only purge when doing full backups. Increases partial backup speed and
# ensure that we have at least one recent full backup when we purge.
- if [[ $backup_prefix == 'backup-' ]]; then
+ if [[ $backup_prefix == 'backup' ]]; then
borg prune --prefix "backup-" --keep-within 7d --keep-daily 7 --keep-weekly 12 --keep-monthly 6 --keep-yearly 0 -v "$dst"
borg prune --prefix "partial-" --keep-within 31d -v "$dst"
fi