Skip to content
Snippets Groups Projects
Commit aa4a109e authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Drop some legacy argument styles; --exclude-directory-metadata and...

Drop some legacy argument styles; --exclude-directory-metadata and --no-exclude-directory-metadata have been replaced with --exclude-directory-metadata={yes,no}.
parent aee4f735
No related branches found
No related tags found
No related merge requests found
Pipeline #158588 passed
......@@ -728,13 +728,6 @@ def main(args=None):
)
sys.exit(2)
# Rewrite/support some legacy argument styles
for val, repl in (
("--exclude-directory-metadata", "--exclude-directory-metadata=yes"),
("--no-exclude-directory-metadata", "--exclude-directory-metadata=no"),
):
args = [repl if x == val else x for x in args]
parsed_args = None
try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment