moved vswhere to tools directory

This commit is contained in:
p01arst0rm
2022-12-06 20:05:38 +00:00
committed by Rick Gibbed
parent 859bb89555
commit a1bb6cc142
4 changed files with 22 additions and 2 deletions

View File

@@ -213,7 +213,7 @@ def import_vs_environment():
install_path = None
env_tool_args = None
vswhere = subprocess.check_output('third_party/vswhere/vswhere.exe -version "[15,)" -latest -format json -utf8', shell=False, universal_newlines=True, encoding="utf-8")
vswhere = subprocess.check_output('tools/vswhere/vswhere.exe -version "[15,)" -latest -format json -utf8', shell=False, universal_newlines=True, encoding="utf-8")
if vswhere:
vswhere = json.loads(vswhere)
if vswhere and len(vswhere) > 0: