Skip to content

Commit

Permalink
Saver prune prefix matching. #38
Browse files Browse the repository at this point in the history
  • Loading branch information
m3nu committed Nov 22, 2018
1 parent 3800b4f commit 2f0bc7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vorta/borg/prune.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def prepare(cls, profile):
'--keep-weekly', str(profile.prune_week),
'--keep-monthly', str(profile.prune_month),
'--keep-yearly', str(profile.prune_year),
'--prefix', platform.node()
'--prefix', f'{platform.node()}-'
]
cmd += pruning_opts
cmd.append(f'{profile.repo.url}')
Expand Down

0 comments on commit 2f0bc7d

Please sign in to comment.