[PATCH 2/2] bundle <cmd>: have usage_msg_opt() note the missing "<file>"
From: Ævar Arnfjörð Bjarmason <hidden>
Date: 2022-12-27 18:40:03
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Ævar Arnfjörð Bjarmason <hidden>
Date: 2022-12-27 18:40:03
Subsystem:
the rest · Maintainer:
Linus Torvalds
Improve the usage we emit on e.g. "git bundle create" to note why we're showing the usage, it's because the "<file>" argument is missing. We know that'll be the case for all parse_options_cmd_bundle() users, as they're passing the "char **bundle_file" parameter, which as the context shows we're expected to populate. Signed-off-by: Ævar Arnfjörð Bjarmason <redacted> --- builtin/bundle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/builtin/bundle.c b/builtin/bundle.c
index 3d1ad220ff8..acceef62001 100644
--- a/builtin/bundle.c
+++ b/builtin/bundle.c@@ -58,7 +58,7 @@ static int parse_options_cmd_bundle(int argc, argc = parse_options(argc, argv, NULL, options, usagestr, PARSE_OPT_STOP_AT_NON_OPTION); if (!argc) - usage_with_options(usagestr, options); + usage_msg_opt(_("need a <file> argument"), usagestr, options); *bundle_file = prefix_filename(prefix, argv[0]); return argc; }
--
2.39.0.1106.gf45ba805d1a