mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 14:32:28 +03: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:
commit
65e1c81f20
1 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue