polybar/version.sh

26 lines
463 B
Bash
Raw Normal View History

2016-06-28 12:50:21 +00:00
#!/bin/sh
msg() {
echo " \033[1;32m**\033[0m" "$@"
}
main() {
2016-06-28 13:24:23 +00:00
version="$1"
[ "$version" ] || {
version="$(git describe --tags --dirty=-dev)"
}
2016-06-28 12:50:21 +00:00
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 "$@"