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.
This commit is contained in:
Ray molenkamp 2018-07-29 11:24:49 -06:00
parent 018c9af446
commit 83227de828
Notes: blender-bot 2023-02-14 10:32:59 +01:00
Referenced by issue #56111, Vertex Paint bug with Falloff Angle
1 changed files with 1 additions and 1 deletions

View File

@ -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%" == "" (