From 609e02b2c5321de49a3e09b3a5ea0e46bd65af66 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Wed, 8 May 2019 12:01:06 -0400 Subject: [PATCH] Fix to update_gitinfo.bat from Guy for the case where no git_info.h exists yet. --- oscar/update_gitinfo.bat | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/oscar/update_gitinfo.bat b/oscar/update_gitinfo.bat index dee9e797..3ae5665a 100755 --- a/oscar/update_gitinfo.bat +++ b/oscar/update_gitinfo.bat @@ -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