mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
10 lines
407 B
Bash
Executable file
10 lines
407 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# shellcheck disable=SC2016
|
|
tag_prev=$(git tag -l | tail -2 | head -1)
|
|
tag_curr=$(git tag -l | tail -1)
|
|
|
|
sed -r "s/${tag_prev}/${tag_curr}/g" -i README.md CMakeLists.txt contrib/lemonbuddy.aur/PKGBUILD contrib/lemonbuddy.aur/.SRCINFO
|
|
git add README.md CMakeLists.txt contrib/lemonbuddy.aur/PKGBUILD contrib/lemonbuddy.aur/.SRCINFO
|
|
git commit -m "build: Bump version to ${tag_curr}"
|
|
git show HEAD
|