Run `borg compact` with the `--progress` option

This commit is contained in:
endumiuz 2023-01-05 11:55:23 +01:00 committed by Manu
parent 84fdbe547d
commit cace0778ac
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class BorgCompactJob(BorgJob):
ret['message'] = trans_late('messages', 'This feature needs Borg 1.2.0 or higher.')
return ret
cmd = ['borg', '--info', '--log-json', 'compact', '--cleanup-commits']
cmd = ['borg', '--info', '--log-json', 'compact', '--cleanup-commits', '--progress']
cmd.append(f'{profile.repo.url}')
ret['ok'] = True