Skip to content

Commit 9879386

Browse files
committed
Merge branch 'rj/tag-column-fix'
"git tag --column" failed to check the exit status of its "git column" invocation, which has been corrected. * rj/tag-column-fix: tag: error when git-column fails
2 parents 45072ee + 92e6647 commit 9879386

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

builtin/tag.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,8 @@ int cmd_tag(int argc, const char **argv, const char *prefix)
530530
struct column_options copts;
531531
memset(&copts, 0, sizeof(copts));
532532
copts.padding = 2;
533-
run_column_filter(colopts, &copts);
533+
if (run_column_filter(colopts, &copts))
534+
die(_("could not start 'git column'"));
534535
}
535536
filter.name_patterns = argv;
536537
ret = list_tags(&filter, sorting, &format);

0 commit comments

Comments
 (0)