diff options
| author | Junio C Hamano <gitster@pobox.com> | 2024-02-27 16:04:31 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-02-27 16:04:32 -0800 |
| commit | 98793866b9a5baf8aea874bfb03d081fc3b80f42 (patch) | |
| tree | c52b4b82a8e48d95adde04c8e0b36e7bc4c1809f | |
| parent | 45072eefef522935c7cb8cbf5ee8226aba2406ac (diff) | |
| parent | 92e66478fc0f1e03ff8e49d66ebe84b1d98b7a90 (diff) | |
| download | git-98793866b9a5baf8aea874bfb03d081fc3b80f42.tar.xz | |
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
| -rw-r--r-- | builtin/tag.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin/tag.c b/builtin/tag.c index 37473ac21f..19a7e06bf4 100644 --- a/builtin/tag.c +++ b/builtin/tag.c @@ -530,7 +530,8 @@ int cmd_tag(int argc, const char **argv, const char *prefix) struct column_options copts; memset(&copts, 0, sizeof(copts)); copts.padding = 2; - run_column_filter(colopts, &copts); + if (run_column_filter(colopts, &copts)) + die(_("could not start 'git column'")); } filter.name_patterns = argv; ret = list_tags(&filter, sorting, &format); |
