Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2018-05-27 04:20:07 +0300
committerRay Molenkamp <github@lazydodo.com>2018-05-27 04:20:07 +0300
commit7a0699db34aa20d96e317202fee7d1266ff3b274 (patch)
tree9ef8717bf4edaaaf5b7da5b18f6e91f8559c2f92 /build_files
parent48155c210a3fd65f6fc2b5be3357b47a8af3711a (diff)
make.bat : Fix builtime.txt being written in the wrong folder.
Diffstat (limited to 'build_files')
-rw-r--r--build_files/windows/build_msbuild.cmd4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_files/windows/build_msbuild.cmd b/build_files/windows/build_msbuild.cmd
index 49958ed67c5..6ca5f1b0df8 100644
--- a/build_files/windows/build_msbuild.cmd
+++ b/build_files/windows/build_msbuild.cmd
@@ -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 \ No newline at end of file