summaryrefslogtreecommitdiffabout
path: root/gen-version.sh
Unidiff
Diffstat (limited to 'gen-version.sh') (more/less context) (ignore whitespace changes)
-rwxr-xr-xgen-version.sh24
1 files changed, 20 insertions, 4 deletions
diff --git a/gen-version.sh b/gen-version.sh
index 4c60f60..739c83e 100755
--- a/gen-version.sh
+++ b/gen-version.sh
@@ -1,4 +1,20 @@
1v=$(git-describe --abbrev=4 HEAD | sed -e 's/-/./g') 1#!/bin/sh
2test -z "$v" && exit 1 2
3echo "CGIT_VERSION = $v" 3# Get version-info specified in Makefile
4echo "CGIT_VERSION = $v" > VERSION 4V=$1
5
6# Use `git describe` to get current version if we're inside a git repo
7if test -d .git
8then
9 V=$(git describe --abbrev=4 HEAD 2>/dev/null | sed -e 's/-/./g')
10fi
11
12new="CGIT_VERSION = $V"
13old=$(cat VERSION 2>/dev/null)
14
15# Exit if VERSION is uptodate
16test "$old" = "$new" && exit 0
17
18# Update VERSION with new version-info
19echo "$new" > VERSION
20cat VERSION