aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2023-10-21 14:48:06 +0200
committerRobin Jarry <robin@jarry.cc>2023-10-21 14:49:04 +0200
commit6bbb477d441b17756f89e0034c26c4c3cdc941af (patch)
tree8c3fd64bef71c800b391cb5c3e12e05ab3d02c85
parent579acf601170b6314d0fc7778d6ed48450976a6e (diff)
downloadaerc-6bbb477d441b17756f89e0034c26c4c3cdc941af.tar.gz
aerc-6bbb477d441b17756f89e0034c26c4c3cdc941af.zip
release.sh: fix typo
It is GNUmakefile, not GNUMakefile. Fixes: d179485eefe5 ("release.sh: update version in GNUMakefile") Signed-off-by: Robin Jarry <robin@jarry.cc>
-rwxr-xr-xcontrib/release.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/release.sh b/contrib/release.sh
index 68ae2854..e3b3369c 100755
--- a/contrib/release.sh
+++ b/contrib/release.sh
@@ -12,9 +12,9 @@ fi
tag_url="https://git.sr.ht/~rjarry/aerc/refs/$next_tag"
echo "======= Creating release commit..."
-sed -i GNUMakefile -e "s/$prev_tag/$next_tag/g"
+sed -i GNUmakefile -e "s/$prev_tag/$next_tag/g"
sed -i CHANGELOG.md -e "s|^## \[Unreleased\].*|&\n\n## [$next_tag]($tag_url) - $(date +%Y-%m-%d)|"
-git add GNUMakefile CHANGELOG.md
+git add GNUmakefile CHANGELOG.md
git commit -sm "Release version $next_tag"
echo "======= Creating tag..."