chiark / gitweb /
build: use dpkg to purge sudo, for less spammy debug logs
[fdroidserver.git] / fdroid
diff --git a/fdroid b/fdroid
index 467551c00989c6007f52466b98f2ca735bf58a80..74339df00f8348aec0009ff3ff981daa0a41b4bf 100755 (executable)
--- a/fdroid
+++ b/fdroid
@@ -31,7 +31,7 @@ commands = OrderedDict([
     ("build", _("Build a package from source")),
     ("init", _("Quickly start a new repository")),
     ("publish", _("Sign and place packages in the repo")),
-    ("gpgsign", _("Add gpg signatures for packages in repo")),
+    ("gpgsign", _("Add PGP signatures using GnuPG for packages in repo")),
     ("update", _("Update repo information for new packages")),
     ("verify", _("Verify the integrity of downloaded packages")),
     ("checkupdates", _("Check for updates to applications")),
@@ -47,11 +47,13 @@ commands = OrderedDict([
     ("signindex", _("Sign indexes created using update --nosign")),
     ("btlog", _("Update the binary transparency log for a URL")),
     ("signatures", _("Extract signatures from APKs")),
+    ("nightly", _("Set up an app build for a nightly build repo")),
+    ("mirror", _("Download complete mirrors of small repos")),
 ])
 
 
 def print_help():
-    print(_("usage: fdroid [-h|--help|--version] <command> [<args>]"))
+    print(_("usage: ") + _("fdroid [<command>] [-h|--help|--version|<args>]"))
     print("")
     print(_("Valid commands are:"))
     for cmd, summary in commands.items():