Code

Make 'traverse_tree()' use linked structure rather than 'const char *base'
[git.git] / GIT-VERSION-GEN
index 1ad324e23696f66451a9ffc05d77f459bf106e83..6ddf04d2161e5fd959c2fd69a7331520e8075d98 100755 (executable)
@@ -16,7 +16,8 @@ elif test -d .git &&
        case "$VN" in
        *$LF*) (exit 1) ;;
        v[0-9]*)
-               git diff-index --quiet HEAD || VN="$VN-dirty" ;;
+               test -z "$(git diff-index --name-only HEAD)" ||
+               VN="$VN-dirty" ;;
        esac
 then
        VN=$(echo "$VN" | sed -e 's/-/./g');