aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2018-06-04 12:34:19 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2018-06-04 12:34:19 -0700
commitedfca678575f4ec3e14bf683ac6613cef5ea1b57 (patch)
tree6cb0d3bba05402e60436a6ee98cd0dd7b1e261b8
parent3fc54807cb9b0bf242f8a2e7d1035bdbbd591aac (diff)
downloadvcpkg-edfca678575f4ec3e14bf683ac6613cef5ea1b57.tar.gz
vcpkg-edfca678575f4ec3e14bf683ac6613cef5ea1b57.zip
"Release"->"release" to avoid case-sensitivity issues
Fixes #3641
-rw-r--r--scripts/bootstrap.ps17
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/bootstrap.ps1 b/scripts/bootstrap.ps1
index 149134dff..f02a98ef0 100644
--- a/scripts/bootstrap.ps1
+++ b/scripts/bootstrap.ps1
@@ -294,7 +294,7 @@ $windowsSDK = getWindowsSDK
$arguments = (
"`"/p:VCPKG_VERSION=-nohash`"",
"`"/p:DISABLE_METRICS=$disableMetrics`"",
-"/p:Configuration=Release",
+"/p:Configuration=release",
"/p:Platform=x86",
"/p:PlatformToolset=$platformToolset",
"/p:TargetPlatformVersion=$windowsSDK",
@@ -325,6 +325,7 @@ function vcpkgInvokeCommandClean()
# vcpkgInvokeCommandClean cmd "/c echo %PATH%"
Write-Host "`nBuilding vcpkg.exe ...`n"
+Write-Host $arguments
$ec = vcpkgInvokeCommandClean $msbuildExe $arguments
if ($ec -ne 0)
@@ -336,5 +337,5 @@ Write-Host "`nBuilding vcpkg.exe... done.`n"
Write-Verbose("Placing vcpkg.exe in the correct location")
-Copy-Item $vcpkgSourcesPath\Release\vcpkg.exe $vcpkgRootDir\vcpkg.exe | Out-Null
-Copy-Item $vcpkgSourcesPath\Release\vcpkgmetricsuploader.exe $vcpkgRootDir\scripts\vcpkgmetricsuploader.exe | Out-Null
+Copy-Item $vcpkgSourcesPath\release\vcpkg.exe $vcpkgRootDir\vcpkg.exe | Out-Null
+Copy-Item $vcpkgSourcesPath\release\vcpkgmetricsuploader.exe $vcpkgRootDir\scripts\vcpkgmetricsuploader.exe | Out-Null