make.bat : Fix builtime.txt being written in the wrong folder.

This commit is contained in:
Ray Molenkamp
2018-05-26 19:20:07 -06:00
parent 48155c210a
commit 7a0699db34

View File

@@ -1,5 +1,5 @@
if "%NOBUILD%"=="1" goto EOF
echo %TIME% > buildtime.txt
echo %TIME% > %BUILD_DIR%\buildtime.txt
msbuild ^
%BUILD_DIR%\Blender.sln ^
/target:build ^
@@ -22,5 +22,5 @@ msbuild ^
echo Error during install phase
exit /b 1
)
echo %TIME% >>buildtime.txt
echo %TIME% >> %BUILD_DIR%\buildtime.txt
:EOF