workaround for issue 359

This commit is contained in:
PiotrP 2015-11-30 18:54:28 -08:00 committed by piotrp
parent 07bf895700
commit 512428fc2f

View file

@ -25,7 +25,7 @@ pushd "$env:VS140COMNTOOLS\..\..\VC"
cmd /c "vcvarsall.bat x64&set" |
foreach {
if ($_ -match "=") {
$v = $_.split("="); set-item -force -path "ENV:\$($v[0])" -value "$($v[1])"
$v = $_.split("="); set-item -force -literalpath "ENV:\$($v[0])" -value "$($v[1])"
}
}
popd