Only run git describe when we're in a git repo
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Wed, 4 Mar 2015 13:54:52 +0000 (14:54 +0100)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 28 Nov 2015 12:23:34 +0000 (13:23 +0100)
This fixes an issue I see when extracting a collectd
tarball into another git repo (the Fedora collectd rpm one).
In that case version-gen.sh picked up the last tag from the Fedora
repo, which is the wrong one.

version-gen.sh

index a80e979..493a6eb 100755 (executable)
@@ -2,7 +2,9 @@
 
 DEFAULT_VERSION="5.5.0.git"
 
-VERSION="`git describe --dirty=+ --abbrev=7 2> /dev/null | grep collectd | sed -e 's/^collectd-//' -e 's/-/./g'`"
+if [ -d .git ]; then
+       VERSION="`git describe --dirty=+ --abbrev=7 2> /dev/null | grep collectd | sed -e 's/^collectd-//' -e 's/-/./g'`"
+fi
 
 if test -z "$VERSION"; then
        VERSION="$DEFAULT_VERSION"