diff options
author | Robin Jarry <robin@jarry.cc> | 2023-10-21 14:48:06 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-10-21 14:49:04 +0200 |
commit | 6bbb477d441b17756f89e0034c26c4c3cdc941af (patch) | |
tree | 8c3fd64bef71c800b391cb5c3e12e05ab3d02c85 /contrib | |
parent | 579acf601170b6314d0fc7778d6ed48450976a6e (diff) | |
download | aerc-6bbb477d441b17756f89e0034c26c4c3cdc941af.tar.gz |
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>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/release.sh | 4 |
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..." |