From 05d8ade563d14633fb101412d78b70a9e94d3f33 Mon Sep 17 00:00:00 2001 From: Matthew Leeds Date: Wed, 27 Jun 2018 19:13:33 -0700 Subject: [PATCH] create-usb: Tweak docs for --destination-repo 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ostree/ot-builtin-create-usb.c b/src/ostree/ot-builtin-create-usb.c index 57feeaa1..eee637c8 100644 --- a/src/ostree/ot-builtin-create-usb.c +++ b/src/ostree/ot-builtin-create-usb.c @@ -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 } };