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
This commit is contained in:
@ -530,7 +530,8 @@ int cmd_tag(int argc, const char **argv, const char *prefix)
|
|||||||
struct column_options copts;
|
struct column_options copts;
|
||||||
memset(&copts, 0, sizeof(copts));
|
memset(&copts, 0, sizeof(copts));
|
||||||
copts.padding = 2;
|
copts.padding = 2;
|
||||||
run_column_filter(colopts, &copts);
|
if (run_column_filter(colopts, &copts))
|
||||||
|
die(_("could not start 'git column'"));
|
||||||
}
|
}
|
||||||
filter.name_patterns = argv;
|
filter.name_patterns = argv;
|
||||||
ret = list_tags(&filter, sorting, &format);
|
ret = list_tags(&filter, sorting, &format);
|
||||||
|
Reference in New Issue
Block a user