From ff192c4ca187746c325992426e10670579db87d0 Mon Sep 17 00:00:00 2001 From: Anthony Truskinger Date: Tue, 23 Feb 2021 12:36:18 +1000 Subject: [PATCH] Fixed mistake in downloader script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤦‍♂️ --- build/download_ap.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/download_ap.ps1 b/build/download_ap.ps1 index 5315d9be5..d6b7d6b45 100755 --- a/build/download_ap.ps1 +++ b/build/download_ap.ps1 @@ -317,7 +317,7 @@ function Get-Asset($asset_url) { throw "Failed extracting $downloaded_zip using unzip" } } - elseif (Get-Command unzip -CommandType Application -ErrorAction SilentlyContinue) { + elseif (Get-Command tar -CommandType Application -ErrorAction SilentlyContinue) { tar --extract --xz --file $downloaded_zip --directory $Destination if ($LASTEXITCODE -ne 0) { throw "Failed extracting $downloaded_zip using tar"