mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
25 lines
463 B
Bash
Executable file
25 lines
463 B
Bash
Executable file
#!/bin/sh
|
|
|
|
msg() {
|
|
echo " \033[1;32m**\033[0m" "$@"
|
|
}
|
|
|
|
main() {
|
|
version="$1"
|
|
|
|
[ "$version" ] || {
|
|
version="$(git describe --tags --dirty=-dev)"
|
|
}
|
|
|
|
msg "Current version: ${version}"
|
|
|
|
sed -r "/#define GIT_TAG/s/GIT_TAG .*/GIT_TAG \"${version}\"/" -i include/version.hpp
|
|
|
|
if [ "$(git diff include/version.hpp 2>/dev/null)" ]; then
|
|
msg "Updated include/version.hpp"
|
|
else
|
|
msg "<include/version.hpp> is already up-to-date"
|
|
fi
|
|
}
|
|
|
|
main "$@"
|