From c23d2aa4d4f2239514a20d1bb1bbdf2d0b7c7b80 Mon Sep 17 00:00:00 2001 From: Joseph Brill <48932340+jcbrill@users.noreply.github.com> Date: Mon, 15 Jun 2020 16:11:37 -0400 Subject: don't exit immediately when vswhere returns no information since there may be more iterations (artifact from moving the vswhere query in a loop) --- SCons/Tool/MSCommon/vc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SCons/Tool/MSCommon/vc.py b/SCons/Tool/MSCommon/vc.py index 8369a4b..b9ed694 100644 --- a/SCons/Tool/MSCommon/vc.py +++ b/SCons/Tool/MSCommon/vc.py @@ -404,7 +404,7 @@ def find_vc_pdir_vswhere(msvc_version, env=None): return os.path.join(lines[0], 'VC') else: # We found vswhere, but no install info available for this version - return None + pass return None -- cgit v0.12