OSCAR-code/oscar/update_gitinfo.bat
Jeff Norman e6ca80ca16 Minor grammar and typo fixes
release_notes: removed Lowenstein Prisma & fix for weight calc & HiRes monitor fix
oscar.pro: changed min macOS version to 10.13 which Qt 5.15.2 requires & updated (c) year
preferencesdialog.ui: fixed typo
update_gitinfo.bat: fixed typo
2023-07-15 04:33:36 -04:00

53 lines
1.4 KiB
Batchfile
Executable File

@echo off
setlocal EnableDelayedExpansion
set DIR=%~dp0
:::set DIR=\oscar\oscar-code\oscar\
cd %DIR%
:: Check git in path and git directory can be found
where /Q git.exe
if errorlevel 1 goto GitFail
git rev-parse --git-dir >nul 2>&1
if errorlevel 1 goto GitFail
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
git diff-index --quiet HEAD --
if %errorlevel%==0 goto GitTag
set GIT_REVISION=%GIT_REVISION%-plus
set GIT_TAG=
goto GitDone
:GitTag
for /f %%i in ('git describe --exact-match --tags') do set GIT_TAG=%%i
goto GitDone
:GitFail
:GitDone
@echo Update_gitinfo.bat: GIT_BRANCH=%GIT_BRANCH%, GIT_REVISION=%GIT_REVISION%, GIT_TAG=%GIT_TAG%
echo // This is an auto generated file > %DIR%git_info.new
if "%GIT_BRANCH%"=="" goto DoRevision
echo #define GIT_BRANCH "%GIT_BRANCH%" >> %DIR%git_info.new
:DoRevision
if "%GIT_REVISION%"=="" goto DoTag
echo #define GIT_REVISION "%GIT_REVISION%" >> %DIR%git_info.new
:DoTag
if "%GIT_TAG%"=="" goto DefinesDone
echo #define GIT_TAG "%GIT_TAG%" >> %DIR%git_info.new
:DefinesDone
fc %DIR%git_info.h %DIR%git_info.new 1>nul 2>nul && del /q %DIR%git_info.new || goto NewFile
goto AllDone
:NewFile
echo Updating %DIR%git_info.h
move /y %DIR%git_info.new %DIR%git_info.h
:AllDone
endlocal