diff options
| author | Zepp <luzepu678@gmail.com> | 2018-07-09 11:57:51 +0800 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-07-08 20:57:51 -0700 |
| commit | 3a1e0f7f686dd8e225c504aa15898d47c2889196 (patch) | |
| tree | 7ac5260b87282178ff78e97bce1ff53f9cba0f4d /scripts | |
| parent | 47f362db993e31588f72f08e2982b04ae924430c (diff) | |
| download | vcpkg-3a1e0f7f686dd8e225c504aa15898d47c2889196.tar.gz vcpkg-3a1e0f7f686dd8e225c504aa15898d47c2889196.zip | |
compatible with non-English version of Windows (#3866)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/bootstrap.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bootstrap.ps1 b/scripts/bootstrap.ps1 index ac25a88d5..5554ddc1e 100644 --- a/scripts/bootstrap.ps1 +++ b/scripts/bootstrap.ps1 @@ -333,7 +333,7 @@ $vcpkgReleaseDir = "$vcpkgSourcesPath\release" if ($win64) { $architecture=(Get-WmiObject win32_operatingsystem | Select-Object osarchitecture).osarchitecture - if ($architecture -ne "64-bit") + if (-not $architecture -like "*64*") { throw "Cannot build 64-bit on non-64-bit system" } |
