summaryrefslogtreecommitdiffabout
path: root/gen-version.sh
authorLars Hjemli <hjemli@gmail.com>2007-09-03 19:52:14 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-09-03 20:17:04 (UTC)
commite8920b52629911f92dbbecdb1d7675760e7a781e (patch) (unidiff)
treebd02d106cfee5823d7496f21756389c119a152dd /gen-version.sh
parent1221adbb581e222cfe932fe72fded2d8613112d9 (diff)
downloadcgit-e8920b52629911f92dbbecdb1d7675760e7a781e.zip
cgit-e8920b52629911f92dbbecdb1d7675760e7a781e.tar.gz
cgit-e8920b52629911f92dbbecdb1d7675760e7a781e.tar.bz2
Rewrite the makefile + gen-version.sh
The old files were simply broken, hopefully the new ones will work out somewhat better. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
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