aboutsummaryrefslogtreecommitdiff
path: root/scripts/bootstrap.ps1
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-11-09 21:41:16 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-11-09 21:41:16 -0800
commit7eb0095094f62719d9f28c694d2bd6b3d003f090 (patch)
tree9ece35added03586cc67df01b139d842740eaa3b /scripts/bootstrap.ps1
parent615f7e112f38cf82dd1cec9d519501938f755324 (diff)
downloadvcpkg-7eb0095094f62719d9f28c694d2bd6b3d003f090.tar.gz
vcpkg-7eb0095094f62719d9f28c694d2bd6b3d003f090.zip
Rename $explicitlyRequestedVSPath to $withVSPath
Diffstat (limited to 'scripts/bootstrap.ps1')
-rw-r--r--scripts/bootstrap.ps14
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/bootstrap.ps1 b/scripts/bootstrap.ps1
index f8e6dcaa0..f349dbecd 100644
--- a/scripts/bootstrap.ps1
+++ b/scripts/bootstrap.ps1
@@ -1,7 +1,7 @@
[CmdletBinding()]
param(
[ValidateNotNullOrEmpty()][string]$disableMetrics = "0",
- [Parameter(Mandatory=$False)][string]$explicitlyRequestedVSPath = ""
+ [Parameter(Mandatory=$False)][string]$withVSPath = ""
)
$scriptsDir = split-path -parent $MyInvocation.MyCommand.Definition
@@ -39,7 +39,7 @@ if (!(Test-Path $vcpkgSourcesPath))
try
{
pushd $vcpkgSourcesPath
- $msbuildExeWithPlatformToolset = & $scriptsDir\findAnyMSBuildWithCppPlatformToolset.ps1 $explicitlyRequestedVSPath
+ $msbuildExeWithPlatformToolset = & $scriptsDir\findAnyMSBuildWithCppPlatformToolset.ps1 $withVSPath
$msbuildExe = $msbuildExeWithPlatformToolset[0]
$platformToolset = $msbuildExeWithPlatformToolset[1]
$windowsSDK = & $scriptsDir\getWindowsSDK.ps1