ci: fix finding the msvc compiler on windows

pull/6248/head
Delyan Angelov 2020-08-28 19:48:18 +03:00
parent 3d8a35ced6
commit 317d15dbe9
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ fn find_vs(vswhere_dir, host_arch string) ?VsInstallation {
res := os.exec('"$vswhere_dir\\Microsoft Visual Studio\\Installer\\vswhere.exe" -latest -prerelease -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath') or {
return error(err)
}
res_output := res.output.trim_space()
res_output := res.output.trim_space().trim_right('\r\n')
// println('res: "$res"')
version := os.read_file('$res_output\\VC\\Auxiliary\\Build\\Microsoft.VCToolsVersion.default.txt') or {
// println('Unable to find msvc version')