зеркало из https://github.com/microsoft/git.git
Merge branch 'dk/version-gen-gitdir' into maint
* dk/version-gen-gitdir: GIT-VERSION-GEN: support non-standard $GIT_DIR path
This commit is contained in:
Коммит
25b3e4fffd
|
@ -11,7 +11,7 @@ LF='
|
||||||
if test -f version
|
if test -f version
|
||||||
then
|
then
|
||||||
VN=$(cat version) || VN="$DEF_VER"
|
VN=$(cat version) || VN="$DEF_VER"
|
||||||
elif test -d .git -o -f .git &&
|
elif test -d ${GIT_DIR:-.git} -o -f .git &&
|
||||||
VN=$(git describe --match "v[0-9]*" --abbrev=7 HEAD 2>/dev/null) &&
|
VN=$(git describe --match "v[0-9]*" --abbrev=7 HEAD 2>/dev/null) &&
|
||||||
case "$VN" in
|
case "$VN" in
|
||||||
*$LF*) (exit 1) ;;
|
*$LF*) (exit 1) ;;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче