X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=fdroid;h=ec9bae2cb7950405dde00e8950740e663459b889;hb=b5c1634320d109ff9c9b69bd3952d3f11636b7fe;hp=a66df6b10098f49b577b02e9ae654bb3c4e29d27;hpb=a1a88e1c6aa8f01afe83aea484c770ef69f0ef06;p=fdroidserver.git diff --git a/fdroid b/fdroid index a66df6b1..ec9bae2c 100755 --- a/fdroid +++ b/fdroid @@ -34,6 +34,7 @@ commands = OrderedDict([ ("publish", _("Sign and place packages in the repo")), ("gpgsign", _("Add PGP signatures using GnuPG for packages in repo")), ("update", _("Update repo information for new packages")), + ("deploy", _("Interact with the repo HTTP server")), ("verify", _("Verify the integrity of downloaded packages")), ("checkupdates", _("Check for updates to applications")), ("import", _("Add a new application from its source code")), @@ -44,7 +45,7 @@ commands = OrderedDict([ ("scanner", _("Scan the source code of a package")), ("dscanner", _("Dynamically scan APKs post build")), ("stats", _("Update the stats of the repo")), - ("server", _("Interact with the repo HTTP server")), + ("server", _("Old, deprecated name for fdroid deploy")), ("signindex", _("Sign indexes created using update --nosign")), ("btlog", _("Update the binary transparency log for a URL")), ("signatures", _("Extract signatures from APKs")), @@ -122,6 +123,11 @@ def main(): logging.critical("Specifying --verbose and --quiet and the same time is silly") sys.exit(1) + # temporary workaround until server.py becomes deploy.py + if command == 'deploy': + command = 'server' + sys.argv.insert(1, 'update') + # Trick optparse into displaying the right usage when --help is used. sys.argv[0] += ' ' + command