Fix, again, the "-plus" notation in Windows build process.

This commit is contained in:
Guy Scharf 2020-02-02 22:19:23 -07:00
parent da29e35766
commit ef26ab5e46

View File

@ -9,8 +9,8 @@ if "%GIT_DIR%"=="" goto GitDone
for /f %%i in ('git rev-parse --abbrev-ref HEAD') do set GIT_BRANCH=%%i
if "%GIT_BRANCH%"=="HEAD" set GIT_BRANCH=""
for /f %%i in ('git rev-parse --short HEAD') do set GIT_REVISION=%%i
for /f %%i in ('git diff-index --quiet HEAD --') do set GIT_INDEX=%%i
if "%GIT_INDEX%"!=="" (
git diff-index --quiet HEAD --
if %ERRORLEVEL% NEQ 0 (
set GIT_REVISION=%GIT_REVISION%-plus
set GIT_TAG=
goto GitDone