Skip to content

Commit f41e777

Browse files
committedMar 16, 2022
build: fix detection of Visual Studio 2019
If Visual Studio 2017 is not found, attempt to find Visual Studio 2019. PR-URL: #42349 Refs: https://github.blog/changelog/2021-10-19-github-actions-the-windows-2016-runner-image-will-be-removed-from-github-hosted-runners-on-march-15-2022/ Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
1 parent 3901891 commit f41e777

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎vcbuild.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ if %target_arch%==x86 if %msvs_host_arch%==x86 set vcvarsall_arg=x86
244244
if defined target_env if "%target_env%" NEQ "vs2017" goto vs-set-2019
245245
echo Looking for Visual Studio 2017
246246
call tools\msvs\vswhere_usability_wrapper.cmd "[15.0,16.0)"
247-
if "_%VCINSTALLDIR%_" == "__" goto msbuild-not-found
247+
if "_%VCINSTALLDIR%_" == "__" goto vs-set-2019
248248
if defined msi (
249249
echo Looking for WiX installation for Visual Studio 2017...
250250
if not exist "%WIX%\SDK\VS2017" (

0 commit comments

Comments
 (0)
Please sign in to comment.