]> git.cameronkatri.com Git - cgit.git/blobdiff - gen-version.sh
ui-tag: Fix inconsistent capitalization
[cgit.git] / gen-version.sh
index 739c83e9956a5b5ef1d821503a349055fc2a5193..80cf49af486b9aad8228f4821601e0a5e84ed0c3 100755 (executable)
@@ -4,9 +4,9 @@
 V=$1
 
 # Use `git describe` to get current version if we're inside a git repo
 V=$1
 
 # Use `git describe` to get current version if we're inside a git repo
-if test -d .git
+if test "$(git rev-parse --git-dir 2>/dev/null)" = '.git'
 then
 then
-       V=$(git describe --abbrev=4 HEAD 2>/dev/null | sed -e 's/-/./g')
+       V=$(git describe --abbrev=4 HEAD 2>/dev/null)
 fi
 
 new="CGIT_VERSION = $V"
 fi
 
 new="CGIT_VERSION = $V"