X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=GIT-VERSION-GEN;h=b8abff355e071af95ae8fc7aafd575e131495438;hp=df7ed327cb3f9b8f93ec596e629da4c08346e69a;hb=9cc91f2d8d746e77947eeb2fd7af711a43c3a56a;hpb=1e97f6746b605e37826fb6ee2ad35b7b330145d6;ds=sidebyside diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index df7ed327..b8abff35 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -8,7 +8,7 @@ LF=' ' # First see if there is a version file (included in release tarballs), -# then try git-describe, then default. +# then try git-describe, then gitweb, then default. if [[ -f VERSION ]]; then VN=$(cat VERSION) || VN="$DEF_VER" elif [[ -d .git || -f .git ]] && @@ -22,6 +22,8 @@ elif [[ -d .git || -f .git ]] && esac then VN=$(echo "$VN" | sed -e 's/-/./g'); +elif [[ "$PWD" =~ paraslash-[a-f0-9]{1,} ]]; then + VN="${PWD#*-}" else VN="$DEF_VER" fi