mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
parent
d7d4c18502
commit
052c753075
2 changed files with 9 additions and 2 deletions
|
@ -223,6 +223,7 @@ black:
|
||||||
script:
|
script:
|
||||||
- pip install black
|
- pip install black
|
||||||
- black --check --diff --color
|
- black --check --diff --color
|
||||||
|
examples/fdroid_clean_repos.py
|
||||||
examples/fdroid_extract_repo_pubkey.py
|
examples/fdroid_extract_repo_pubkey.py
|
||||||
fdroid
|
fdroid
|
||||||
fdroidserver/btlog.py
|
fdroidserver/btlog.py
|
||||||
|
|
|
@ -13,9 +13,15 @@ fdroid_summary = 'reset app VCSs to the latest version'
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
parser = argparse.ArgumentParser(usage="%(prog)s [options] [APPID[:VERCODE] [APPID[:VERCODE] ...]]")
|
parser = argparse.ArgumentParser(
|
||||||
|
usage="%(prog)s [options] [APPID[:VERCODE] [APPID[:VERCODE] ...]]"
|
||||||
|
)
|
||||||
common.setup_global_opts(parser)
|
common.setup_global_opts(parser)
|
||||||
parser.add_argument("appid", nargs='*', help=_("applicationId with optional versionCode in the form APPID[:VERCODE]"))
|
parser.add_argument(
|
||||||
|
"appid",
|
||||||
|
nargs='*',
|
||||||
|
help=_("applicationId with optional versionCode in the form APPID[:VERCODE]"),
|
||||||
|
)
|
||||||
metadata.add_metadata_arguments(parser)
|
metadata.add_metadata_arguments(parser)
|
||||||
options = parser.parse_args()
|
options = parser.parse_args()
|
||||||
common.options = options
|
common.options = options
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue