rofi/script/get_git_rev.sh

23 lines
510 B
Bash
Raw Normal View History

2016-04-27 16:13:19 +00:00
#!/usr/bin/env sh
2016-03-12 13:00:19 +00:00
DIR=$1
FILE=$2
2016-04-10 11:22:49 +00:00
GIT=$(which git)
2016-03-12 13:00:19 +00:00
2016-04-10 11:22:49 +00:00
if [ -d "${DIR}/.git/" ] && [ -n "${GIT}" ]
2016-03-12 13:00:19 +00:00
then
echo -n "#define GIT_VERSION \"" > ${FILE}.tmp
2016-04-10 11:22:49 +00:00
REV="$(${GIT} describe --tags --always --dirty) ($(${GIT} describe --tags --always --all | sed -e 's:heads/::'))"
2016-03-12 13:00:19 +00:00
echo -n "${REV}" >> ${FILE}.tmp
echo "\"" >> ${FILE}.tmp
else
echo "#undef GIT_VERSION" > ${FILE}.tmp
fi
2016-04-10 11:22:49 +00:00
if [ ! -f ${FILE} ] || ! diff ${FILE}.tmp ${FILE} > /dev/null
2016-03-12 13:00:19 +00:00
then
mv ${FILE}.tmp ${FILE}
else
rm ${FILE}.tmp
fi