polybar/bump.sh

28 lines
770 B
Bash
Raw Normal View History

2016-06-14 03:39:17 +00:00
#!/bin/sh
2016-06-28 12:50:21 +00:00
# Use passed argument as new tag
2016-06-28 13:24:23 +00:00
[ $# -eq 1 ] && {
git tag "$@" || exit 1
}
2016-06-28 12:50:21 +00:00
2016-06-14 03:39:17 +00:00
# shellcheck disable=SC2016
tag_prev=$(git tag -l | tail -2 | head -1)
tag_curr=$(git tag -l | tail -1)
2016-06-28 13:24:23 +00:00
./version.sh "$tag_curr"
sed -r "s/${tag_prev}/${tag_curr}/g" -i \
README.md CMakeLists.txt \
contrib/lemonbuddy.aur/PKGBUILD contrib/lemonbuddy.aur/.SRCINFO \
contrib/lemonbuddy-git.aur/PKGBUILD contrib/lemonbuddy-git.aur/.SRCINFO
git add -u README.md CMakeLists.txt \
contrib/lemonbuddy.aur/PKGBUILD contrib/lemonbuddy.aur/.SRCINFO \
contrib/lemonbuddy-git.aur/PKGBUILD contrib/lemonbuddy-git.aur/.SRCINFO \
include/version.hpp
2016-06-14 03:39:17 +00:00
git commit -m "build: Bump version to ${tag_curr}"
2016-06-28 12:50:21 +00:00
# Recreate the tag to include the last commit
[ $# -eq 1 ] && git tag -f "$@"