From 35b596b45064aea5759d7d33c4c247ceb0014a0e Mon Sep 17 00:00:00 2001 From: Hector Sanjuan Date: Thu, 14 Jan 2021 14:01:01 +0100 Subject: [PATCH] release.sh: Fix typo in git describe --- release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.sh b/release.sh index a0b2d647..89aa6efc 100755 --- a/release.sh +++ b/release.sh @@ -32,7 +32,7 @@ fi # Actual releases, commit and make an annotated tag with all the commits # since the last. git commit -S -m "Release v${version}" -lastver=`git describe --abrev=0` +lastver=`git describe --abbrev=0` echo "Tag for Release ${version}" > tag_annotation echo >> tag_annotation git log --pretty=oneline ${lastver}..HEAD >> tag_annotation