2007-09-03 21:52:14 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Get version-info specified in Makefile
|
|
|
|
V=$1
|
|
|
|
|
|
|
|
# Use `git describe` to get current version if we're inside a git repo
|
2014-02-01 16:07:46 +01:00
|
|
|
if test "$(git rev-parse --git-dir 2>/dev/null)" = '.git'
|
2007-09-03 21:52:14 +02:00
|
|
|
then
|
2007-10-01 12:01:51 +02:00
|
|
|
V=$(git describe --abbrev=4 HEAD 2>/dev/null)
|
2007-09-03 21:52:14 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
new="CGIT_VERSION = $V"
|
|
|
|
old=$(cat VERSION 2>/dev/null)
|
|
|
|
|
|
|
|
# Exit if VERSION is uptodate
|
|
|
|
test "$old" = "$new" && exit 0
|
|
|
|
|
|
|
|
# Update VERSION with new version-info
|
|
|
|
echo "$new" > VERSION
|
|
|
|
cat VERSION
|