On Sun, Nov 10, 2019 at 12:41:26PM -0800, Robin H. Johnson wrote: > @@ -97,8 +97,11 @@ static int cmd_bundle_create(int argc, const char **argv, const char *prefix) { > static int cmd_bundle_verify(int argc, const char **argv, const char *prefix) { > struct bundle_header header; > int bundle_fd = -1; > + int quiet = 0; > > struct option options[] = { > + OPT_BOOL('q', "quiet", &quiet, > + N_("do not show bundle details")), > OPT_END() > }; This --quiet makes much more sense to me (compared to the last patch) as distinct from "--no-progress", because it is about quieting non-progress chatter. There's an OPT__QUIET() macro; should we be using that here? -Peff