From a02e0f10eae216232e7a25e1e2358dca295ec9bc Mon Sep 17 00:00:00 2001 From: n3wjack Date: Thu, 8 Feb 2024 21:09:21 +0100 Subject: [PATCH] Fix for issue #2390 for the vim package. Use Get-ChocolateyUnzip instead of Install-ChocolateyZipPackage to install Vim. --- automatic/vim/tools/chocolateyinstall.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automatic/vim/tools/chocolateyinstall.ps1 b/automatic/vim/tools/chocolateyinstall.ps1 index b8eeddf863a..22dc933bbf9 100644 --- a/automatic/vim/tools/chocolateyinstall.ps1 +++ b/automatic/vim/tools/chocolateyinstall.ps1 @@ -20,7 +20,7 @@ $installArgs = @{ '$installDir', ($installDir | Out-String), '$packageArgs', ($packageArgs | Out-String), '$installArgs', ($installArgs | Out-String) | ForEach-Object { Write-Debug $_ } -Install-ChocolateyZipPackage @packageArgs | Write-Debug +Get-ChocolateyUnzip @packageArgs | Write-Debug Start-ChocolateyProcessAsAdmin @installArgs | Write-Debug Set-Content -Path "$toolsDir\installDir" -Value $installDir Create-SymbolicLink