Attempt to update update_gitinfo.bat to match the bash script.

This is almost certain to be broken. Somebody with a Windows build
environment will need to test and fix it.
This commit is contained in:
sawinglogz 2020-01-16 17:47:48 -05:00
parent 083fa3debd
commit 656f8a3c61

View File

@ -3,16 +3,20 @@ setlocal
set DIR=%~dp0
cd %DIR%
for /f %%i in ('git rev-parse --abbrev-ref HEAD') do set GIT_BRANCH=%%i
for /f %%i in ('git rev-parse --short HEAD') do set GIT_REVISION=%%i
git diff-index --quiet HEAD -- || set GIT_REVISION=%GIT_REVISION%-plus
if "%GIT_BRANCH"=="" set GIT_BRANCH="Unknown"
if "%GIT_REVISION"=="" set GIT_REVISION="Unknown"
if ('git rev-parse --git-dir') (
for /f %%i in ('git rev-parse --abbrev-ref HEAD') do set GIT_BRANCH=%%i
for /f %%i in ('git rev-parse --short HEAD') do set GIT_REVISION=%%i
if ('git diff-index --quiet HEAD --') (
set GIT_REVISION=%GIT_REVISION%-plus
) else (
for /f %%i in ('git describe --exact-match --tags') do set GIT_TAG=%%i
)
)
echo // This is an auto generated file > %DIR%git_info.new
echo const QString GIT_BRANCH="%GIT_BRANCH%"; >> %DIR%git_info.new
echo const QString GIT_REVISION="%GIT_REVISION%"; >> %DIR%git_info.new
if "%GIT_BRANCH"!="" echo #define GIT_BRANCH "%GIT_BRANCH%" >> %DIR%git_info.new
if "%GIT_REVISION!="" echo #define GIT_REVISION "%GIT_REVISION%" >> %DIR%git_info.new
if "%GIT_TAG"!="" echo #define GIT_TAG "%GIT_TAG%" >> %DIR%git_info.new
fc %DIR%git_info.h %DIR%git_info.new >nul 2>nul && del /q %DIR%git_info.new || goto NewFile
goto AllDone