From: Matthew Leeds Date: Thu, 28 Jun 2018 02:13:33 +0000 (-0700) Subject: create-usb: Tweak docs for --destination-repo X-Git-Tag: archive/raspbian/2022.1-3+rpi1~1^2~4^2~21^2~30 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=05d8ade563d14633fb101412d78b70a9e94d3f33;p=ostree.git 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 --- 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 } };