aboutsummaryrefslogtreecommitdiff
path: root/scripts/fetchTool.ps1
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2018-04-04 20:33:45 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2018-04-06 17:24:46 -0700
commit408cd5ccb8d8260efd9a8f2ff956414587d42e28 (patch)
tree871787c1258a94f99442ad40b940d90ee3d8f71d /scripts/fetchTool.ps1
parent2fa16cda18856ae7f6685c48c0aeefd15225af11 (diff)
downloadvcpkg-408cd5ccb8d8260efd9a8f2ff956414587d42e28.tar.gz
vcpkg-408cd5ccb8d8260efd9a8f2ff956414587d42e28.zip
[vcpkgTools.xml] requiredVersion -> version
Diffstat (limited to 'scripts/fetchTool.ps1')
-rw-r--r--scripts/fetchTool.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/fetchTool.ps1 b/scripts/fetchTool.ps1
index d5c8fe77e..55d04ec98 100644
--- a/scripts/fetchTool.ps1
+++ b/scripts/fetchTool.ps1
@@ -25,7 +25,7 @@ function fetchToolInternal([Parameter(Mandatory=$true)][string]$tool)
throw "Unkown tool $tool"
}
- $toolPath="$downloadsDir\tools\$tool-$($toolData.requiredVersion)-windows"
+ $toolPath="$downloadsDir\tools\$tool-$($toolData.version)-windows"
$exePath = "$toolPath\$($toolData.exeRelativePath)"
if (Test-Path $exePath)