From 5430730ae86c53a93633b1cdcc88a31bd832bb98 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 22 Feb 2026 00:40:29 -0500 Subject: Bugfix: git describe output should always produce long output if a tag exists --- src/lib/core/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/lib/core/utils.c b/src/lib/core/utils.c index 00d747f..34dee45 100644 --- a/src/lib/core/utils.c +++ b/src/lib/core/utils.c @@ -376,7 +376,7 @@ char *git_describe(const char *path) { return NULL; } - FILE *pp = popen("git describe --first-parent --always --tags", "r"); + FILE *pp = popen("git describe --first-parent --long --always --tags", "r"); if (!pp) { return NULL; } -- cgit