27 lines
502 B
Bash
27 lines
502 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
msg() {
|
||
|
if [ -t 1 ]; then
|
||
|
printf " \033[1;32m**\033[0m %s\n" "$@"
|
||
|
else
|
||
|
printf "** %s\n" "$@"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
main() {
|
||
|
if [ $# -eq 0 ]; then
|
||
|
set -- "$(git describe --tags --dirty=-dev)"
|
||
|
fi
|
||
|
|
||
|
msg "Current version: $1"
|
||
|
sed -r "/#define GIT_TAG/s/GIT_TAG .*/GIT_TAG \"$1\"/" -i include/version.hpp
|
||
|
|
||
|
if git diff include/version.hpp 2>/dev/null | grep -q .; then
|
||
|
msg "Updated include/version.hpp"
|
||
|
else
|
||
|
msg "<include/version.hpp> is already up-to-date"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
main "$@"
|