Skip to content

Commit

Permalink
Add "git pull" before compiling to build.bat
Browse files Browse the repository at this point in the history
(to make sure we get correct version number)
  • Loading branch information
niksedk committed Jan 20, 2020
1 parent dc8329e commit 7c14754
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ IF /I "%~1" == "--help" GOTO ShowHelp
IF /I "%~1" == "/?" GOTO ShowHelp
IF /I "%~1" == "-?" GOTO ShowHelp

ECHO Getting latest changes...
git pull
ECHO.

ECHO Starting compilation...

REM Set environment variables for Visual Studio command line if necessary
:SetVsCmdLineEnv
IF DEFINED VSINSTALLDIR IF EXIST "%VSINSTALLDIR%" (
Expand Down

0 comments on commit 7c14754

Please sign in to comment.