1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-04 14:30:11 +01:00

Merge branch 'scanner_argument_order' into 'master'

scanner: Print all short options before long options

See merge request fdroid/fdroidserver!1363
This commit is contained in:
Michael Pöhn 2023-05-25 12:54:18 +00:00
commit 65e1c81f20

View File

@ -784,9 +784,9 @@ def main():
help=_("Force scan of disabled apps and builds."))
parser.add_argument("--json", action="store_true", default=False,
help=_("Output JSON to stdout."))
parser.add_argument("--refresh", "-r", action="store_true", default=False,
parser.add_argument("-r", "--refresh", action="store_true", default=False,
help=_("fetch the latest version of signatures from the web"))
parser.add_argument("--exit-code", "-e", action="store_true", default=False,
parser.add_argument("-e", "--exit-code", action="store_true", default=False,
help=_("Exit with a non-zero code if problems were found"))
metadata.add_metadata_arguments(parser)
options = parser.parse_args()