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-07-29 20:24:49 +0300
committerRay Molenkamp <github@lazydodo.com>2018-07-29 20:24:49 +0300
commit83227de828c9cb8f7807e1d15308bda0bc261fab (patch)
treef0013c750734fc792a35acd517ef6514ae07d11d /build_files/windows
parent018c9af446de10f038a6e641ca3a61ce451a7c92 (diff)
make.bat : fix msvc 2017 detection.
when 2017 was not found, it did not properly bail out of the rest of the detection process unless verbose mode was used.
Diffstat (limited to 'build_files/windows')
-rw-r--r--build_files/windows/detect_msvc2017.cmd2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/windows/detect_msvc2017.cmd b/build_files/windows/detect_msvc2017.cmd
index 7695dc8d5a2..029f98cbe1e 100644
--- a/build_files/windows/detect_msvc2017.cmd
+++ b/build_files/windows/detect_msvc2017.cmd
@@ -10,8 +10,8 @@ set vs_where=%ProgramFilesX86%\Microsoft Visual Studio\Installer\vswhere.exe
if not exist "%vs_where%" (
if NOT "%verbose%" == "" (
echo Visual Studio 2017 ^(15.2 or newer^) is not detected
- goto FAIL
)
+ goto FAIL
)
if NOT "%verbose%" == "" (