aboutsummaryrefslogtreecommitdiff
path: root/scripts/fetchTool.ps1
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2018-04-12 18:15:38 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2018-04-12 18:15:38 -0700
commitdc207a2c891fe6deb2710ccde0abf48078f64fcd (patch)
treedbe3d517060d68a06e7b0ac58104b0d7ea8547b6 /scripts/fetchTool.ps1
parent7a1003f2ce11de88e261dcfa84d2f177a0d8d8ca (diff)
downloadvcpkg-dc207a2c891fe6deb2710ccde0abf48078f64fcd.tar.gz
vcpkg-dc207a2c891fe6deb2710ccde0abf48078f64fcd.zip
Restore powershell extracting because shell may not be available (see #3252)
Diffstat (limited to 'scripts/fetchTool.ps1')
-rw-r--r--scripts/fetchTool.ps14
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/fetchTool.ps1 b/scripts/fetchTool.ps1
index be18656c7..dd3f0f9f4 100644
--- a/scripts/fetchTool.ps1
+++ b/scripts/fetchTool.ps1
@@ -73,7 +73,7 @@ function fetchToolInternal([Parameter(Mandatory=$true)][string]$tool)
# Extract aria2 with shell because we need it to download 7zip
if ($tool -eq "7zip920" -or $tool -eq "aria2")
{
- vcpkgExtractZipFileWithShell -ArchivePath $downloadPath -DestinationDir $toolPath
+ vcpkgExtractZipFile -ArchivePath $downloadPath -DestinationDir $toolPath
}
elseif ($tool -eq "7zip")
{
@@ -88,7 +88,7 @@ function fetchToolInternal([Parameter(Mandatory=$true)][string]$tool)
else
{
$sevenZipExe = fetchToolInternal "7zip"
- vcpkgExtractFile -sevenZipExe "$sevenZipExe" -ArchivePath $downloadPath -DestinationDir $toolPath
+ vcpkgExtractFileWith7z -sevenZipExe "$sevenZipExe" -ArchivePath $downloadPath -DestinationDir $toolPath
}
Write-Host "Extracting $tool... done."
}