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

Merge branch 'dry_run' into 'master'

Improve rewritemeta --help

See merge request fdroid/fdroidserver!1034
This commit is contained in:
Jochen Sprickerhof 2021-10-23 12:45:57 +00:00
commit 1033d6e163
2 changed files with 2 additions and 1 deletions

View File

@ -394,6 +394,7 @@ plugin_fetchsrclibs:
python3-cffi python3-cffi
python3-cryptography python3-cryptography
python3-pip python3-pip
python3-pil
python3-venv python3-venv
- python3 -m venv --system-site-packages env - python3 -m venv --system-site-packages env
- . env/bin/activate - . env/bin/activate

View File

@ -51,7 +51,7 @@ def main():
parser = ArgumentParser() parser = ArgumentParser()
common.setup_global_opts(parser) common.setup_global_opts(parser)
parser.add_argument("-l", "--list", action="store_true", default=False, parser.add_argument("-l", "--list", action="store_true", default=False,
help=_("List files that would be reformatted")) help=_("List files that would be reformatted (dry run)"))
parser.add_argument("appid", nargs='*', help=_("application ID of file to operate on")) parser.add_argument("appid", nargs='*', help=_("application ID of file to operate on"))
metadata.add_metadata_arguments(parser) metadata.add_metadata_arguments(parser)
options = parser.parse_args() options = parser.parse_args()