1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

Suppress --wiki in fdroid build

This was already done for fdroid update in 00c2cc969.
This commit is contained in:
Jochen Sprickerhof 2021-11-24 18:04:51 +01:00
parent 32d2330bb5
commit 36a7847525

View File

@ -934,7 +934,7 @@ def parse_commandline():
parser.add_argument("-a", "--all", action="store_true", default=False,
help=_("Build all applications available"))
parser.add_argument("-w", "--wiki", default=False, action="store_true",
help=_("Update the wiki"))
help=argparse.SUPPRESS)
metadata.add_metadata_arguments(parser)
options = parser.parse_args()
metadata.warnings_action = options.W