mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Fix to update_gitinfo.bat from Guy for the case where no git_info.h exists yet.
This commit is contained in:
parent
71c05c4625
commit
609e02b2c5
@ -14,10 +14,11 @@ 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
|
||||
|
||||
fc %DIR%git_info.h %DIR%git_info.new > nul
|
||||
if errorlevel 0 (
|
||||
del /q %DIR%git_info.new
|
||||
) else (
|
||||
echo Updating %DIR%git_info.h
|
||||
move /y %DIR%git_info.new %DIR%git_info.h
|
||||
)
|
||||
fc %DIR%git_info.h %DIR%git_info.new >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
|
||||
|
Loading…
Reference in New Issue
Block a user