mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-09 00:32:37 -04:00
Fix borg break-lock ignoring BORG_REPO env var
This commit is contained in:
parent
bbb280c129
commit
7053a72140
1 changed files with 1 additions and 1 deletions
|
|
@ -1316,7 +1316,7 @@ class Archiver:
|
|||
formatter_class=argparse.RawDescriptionHelpFormatter,
|
||||
help='break repository and cache locks')
|
||||
subparser.set_defaults(func=self.do_break_lock)
|
||||
subparser.add_argument('location', metavar='REPOSITORY',
|
||||
subparser.add_argument('location', metavar='REPOSITORY', nargs='?', default='',
|
||||
type=location_validator(archive=False),
|
||||
help='repository for which to break the locks')
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue