From f3463c4867df66b8f91adc4e2aa795b59997eb9d Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Wed, 28 Feb 2018 17:48:31 -0800 Subject: [PATCH] [bootstrap] Fix reference to xml file --- scripts/bootstrap.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/bootstrap.ps1 b/scripts/bootstrap.ps1 index bc94aecc8f..a3c842dc09 100644 --- a/scripts/bootstrap.ps1 +++ b/scripts/bootstrap.ps1 @@ -16,8 +16,7 @@ try { [xml]$asXml = Get-Content "$scriptsDir\vcpkgTools.xml" $toolData = $asXml.SelectSingleNode("//tools/tool[@name=`"git`"]") - $postExtractionExecutableRelativePath = $toolData.postExtractionExecutableRelativePath - $gitFromDownload = "$vcpkgRootDir\downloads\$postExtractionExecutableRelativePath" + $gitFromDownload = "$vcpkgRootDir\downloads\$($toolData.exeRelativePath)" $gitDir = split-path -parent $gitFromDownload $env:path += ";$gitDir"