1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-10-27 05:23:39 -04:00
polybar/bump.sh

28 lines
770 B
Bash
Raw Normal View History

2016-06-13 23:39:17 -04:00
#!/bin/sh
2016-06-28 08:50:21 -04:00
# Use passed argument as new tag
2016-06-28 09:24:23 -04:00
[ $# -eq 1 ] && {
git tag "$@" || exit 1
}
2016-06-28 08:50:21 -04:00
2016-06-13 23:39:17 -04:00
# shellcheck disable=SC2016
tag_prev=$(git tag -l | tail -2 | head -1)
tag_curr=$(git tag -l | tail -1)
2016-06-28 09:24:23 -04: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-13 23:39:17 -04:00
git commit -m "build: Bump version to ${tag_curr}"
2016-06-28 08:50:21 -04:00
# Recreate the tag to include the last commit
[ $# -eq 1 ] && git tag -f "$@"