1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-01-01 12:45:34 +00:00

Merge pull request #7455 from ThomasWaldmann/remove-cache-only-from-delete

delete: remove --cache-only option, fixes #7440
This commit is contained in:
TW 2023-03-20 21:48:57 +01:00 committed by GitHub
commit 46f1cda204
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -142,12 +142,6 @@ def build_parser_delete(self, subparsers, common_parser, mid_common_parser):
subparser.add_argument(
"-s", "--stats", dest="stats", action="store_true", help="print statistics for the deleted archive"
)
subparser.add_argument(
"--cache-only",
dest="cache_only",
action="store_true",
help="delete only the local cache for the given repository",
)
subparser.add_argument(
"--force",
dest="forced",