disallow --list with --progress, fixes #7219

This commit is contained in:
Thomas Waldmann 2022-12-28 17:23:04 +01:00
parent e49b60ae59
commit bdc2dbfc08
No known key found for this signature in database
GPG Key ID: 243ACFA951F78E01
1 changed files with 2 additions and 0 deletions

View File

@ -384,6 +384,8 @@ class Archiver(
func = get_func(args)
if func == self.do_create and args.paths and args.paths_from_stdin:
parser.error("Must not pass PATH with ``--paths-from-stdin``.")
if args.progress and getattr(args, "output_list", False):
parser.error("Options --progress and --list do not play nicely together.")
if func == self.do_create and not args.paths:
if args.content_from_command or args.paths_from_command:
parser.error("No command given.")