summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2020-01-25 17:25:08 +0100
committerCharles Pigott <charlespigott@googlemail.com>2020-01-26 14:47:54 +0000
commitbf4672864dc7ffe9f54b447d220cf58af36396ae (patch)
tree86dc6a67913d7652e9f0cd756e90365b24150351
parentc8779fb311c2665d3fc45c18b2f3460cd998d179 (diff)
downloadopenttd-bf4672864dc7ffe9f54b447d220cf58af36396ae.tar.xz
Fix #7960: use the same method as findversion.sh to determine tag
-rwxr-xr-xazure-pipelines/changelog.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/azure-pipelines/changelog.sh b/azure-pipelines/changelog.sh
index be665a5a0..8231f6667 100755
--- a/azure-pipelines/changelog.sh
+++ b/azure-pipelines/changelog.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-tag=$(git describe --tags 2>/dev/null)
+tag=$(git name-rev --name-only --tags --no-undefined HEAD 2>/dev/null | sed 's@\^0$@@')
# If we are a tag, show the part of the changelog till (but excluding) the last stable
if [ -n "$tag" ]; then