diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-02-22 00:40:29 -0500 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-02-22 00:40:29 -0500 |
| commit | 5430730ae86c53a93633b1cdcc88a31bd832bb98 (patch) | |
| tree | 84aba81e9b2fc17312d166ad098e6ff9f7128be2 /src | |
| parent | bccb39c88e157a90659e8226e2fadad7dc258130 (diff) | |
| download | stasis-5430730ae86c53a93633b1cdcc88a31bd832bb98.tar.gz | |
Bugfix: git describe output should always produce long output if a tag exists
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/core/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
