Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Make GIT-VERSION-GEN tolerate missing git describe command again
author
Uwe Zeisberger
<Uwe_Zeisberger@digi.com>
Thu, 26 Jan 2006 16:39:27 +0000
(17:39 +0100)
committer
Junio C Hamano
<junkio@cox.net>
Fri, 27 Jan 2006 02:14:02 +0000
(18:14 -0800)
Commit
5c7d3c95
broke that by making the git-describe command part of
a pipe.
Signed-off-by: Uwe Zeisberger <zeisberg@informatik.uni-freiburg.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
GIT-VERSION-GEN
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
e974c9a
)
diff --git
a/GIT-VERSION-GEN
b/GIT-VERSION-GEN
index e3cd9fa09422236063053faf61d358dc98f4d4d0..72201be57c633259e65b435f8623a80e4cdc3e88 100755
(executable)
--- a/
GIT-VERSION-GEN
+++ b/
GIT-VERSION-GEN
@@
-5,9
+5,11
@@
DEF_VER=v1.1.GIT
# First try git-describe, then see if there is a version file
# (included in release tarballs), then default
-VN=$(git-describe --abbrev=4 HEAD 2>/dev/null | sed -e 's/-/./g') ||
-VN=$(cat version) ||
-VN="$DEF_VER"
+if VN=$(git-describe --abbrev=4 HEAD 2>/dev/null); then
+ VN=$(echo "$VN" | sed -e 's/-/./g');
+else
+ VN=$(cat version) || VN="$DEF_VER"
+fi
VN=$(expr "$VN" : v*'\(.*\)')