mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
update_gitinfo.bat fixes from Guy
This commit is contained in:
parent
5923325917
commit
c42e5d7ef0
11
oscar/update_gitinfo.bat
Normal file → Executable file
11
oscar/update_gitinfo.bat
Normal file → Executable file
@ -4,13 +4,10 @@ set DIR=%~dp0
|
|||||||
|
|
||||||
for /f %%i in ('git --work-tree %DIR% rev-parse --abbrev-ref HEAD') do set GIT_BRANCH=%%i
|
for /f %%i in ('git --work-tree %DIR% rev-parse --abbrev-ref HEAD') do set GIT_BRANCH=%%i
|
||||||
for /f %%i in ('git --work-tree %DIR% rev-parse --short HEAD') do set GIT_REVISION=%%i
|
for /f %%i in ('git --work-tree %DIR% rev-parse --short HEAD') do set GIT_REVISION=%%i
|
||||||
git --work-tree $DIR diff-index --quiet HEAD
|
git --work-tree %DIR% diff-index --quiet HEAD || set GIT_REVISION=%GIT_REVISION%+
|
||||||
if %ERRORLEVEL% neq 0 (
|
|
||||||
do set GIT_REVISION="%GIT_REVISION%+" # uncommitted changes
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%GIT_BRANCH"=="" set GIT_BRANCH="Unknown";
|
if "%GIT_BRANCH"=="" set GIT_BRANCH="Unknown"
|
||||||
if "%GIT_REVISION"=="" set GIT_REVISION="Unknown";
|
if "%GIT_REVISION"=="" set GIT_REVISION="Unknown"
|
||||||
|
|
||||||
echo // This is an auto generated file > %DIR%git_info.new
|
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_BRANCH="%GIT_BRANCH%"; >> %DIR%git_info.new
|
||||||
@ -18,7 +15,7 @@ echo const QString GIT_REVISION="%GIT_REVISION%"; >> %DIR%git_info.new
|
|||||||
|
|
||||||
fc %DIR%git_info.h %DIR%git_info.new > nul
|
fc %DIR%git_info.h %DIR%git_info.new > nul
|
||||||
if errorlevel 0 (
|
if errorlevel 0 (
|
||||||
del /y %DIR%git_info.new
|
del /q %DIR%git_info.new
|
||||||
) else (
|
) else (
|
||||||
echo Updating %DIR%git_info.h
|
echo Updating %DIR%git_info.h
|
||||||
move /y %DIR%git_info.new %DIR%git_info.h
|
move /y %DIR%git_info.new %DIR%git_info.h
|
||||||
|
Loading…
Reference in New Issue
Block a user