Correct some argument help strings
continuous-integration/drone/push Build is failing Details

This commit is contained in:
IamTheFij 2023-06-12 11:08:45 -07:00
parent dfc12ed79e
commit ab1f25304b
1 changed files with 2 additions and 2 deletions

View File

@ -495,13 +495,13 @@ def _parse_args(args: list[str] | None = None) -> argparse.Namespace:
"--extract-files",
"-e",
action="append",
help="A list of file names to extract from downloaded archive",
help="A list of file names to extract from the downloaded archive",
)
parser.add_argument(
"--extract-all",
"-x",
action="store_true",
help="Shell commands to execute after download or extraction",
help="Extract all files from the downloaded archive",
)
parser.add_argument(
"--url-only",