create-usb: Tweak docs for --destination-repo
authorMatthew Leeds <matthew.leeds@endlessm.com>
Thu, 28 Jun 2018 02:13:33 +0000 (19:13 -0700)
committerAtomic Bot <atomic-devel@projectatomic.io>
Thu, 28 Jun 2018 13:03:09 +0000 (13:03 +0000)
Make it show up in the help output as --destination-repo=DEST so it's
clear that it takes an argument.

Closes: #1656
Approved by: jlebon

src/ostree/ot-builtin-create-usb.c

index 57feeaa1d23386dfaa3cb8560fe542419e2ba818..eee637c831aa027e4cc3e882ca871f4e0d661cb3 100644 (file)
@@ -37,7 +37,7 @@ static char *opt_destination_repo = NULL;
 static GOptionEntry options[] =
   {
     { "disable-fsync", 0, 0, G_OPTION_ARG_NONE, &opt_disable_fsync, "Do not invoke fsync()", NULL },
-    { "destination-repo", 0, 0, G_OPTION_ARG_FILENAME, &opt_destination_repo, "Use custom repository directory within the mount", NULL },
+    { "destination-repo", 0, 0, G_OPTION_ARG_FILENAME, &opt_destination_repo, "Use custom repository directory within the mount", "DEST" },
     { NULL }
   };