From c2cb88ad8129b3df065cd17af315e664bd591398 Mon Sep 17 00:00:00 2001 From: LukeFZ <17146677+LukeFZ@users.noreply.github.com> Date: Fri, 1 Dec 2023 10:51:55 +0100 Subject: [PATCH] replace wget with Invoke-WebRequest --- get-plugins.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-plugins.ps1 b/get-plugins.ps1 index 2a85ca6b..c529dd64 100644 --- a/get-plugins.ps1 +++ b/get-plugins.ps1 @@ -3,6 +3,6 @@ # Download the latest set of plugins to a temporary file, extract the archive then delete it $temp = New-TemporaryFile | Rename-Item -NewName { $_ -replace 'tmp$', 'zip' } -PassThru -wget -OutFile $temp https://github.com/djkaty/Il2CppInspectorPlugins/releases/latest/download/plugins.zip +Invoke-WebRequest -OutFile $temp https://github.com/djkaty/Il2CppInspectorPlugins/releases/latest/download/plugins.zip Expand-Archive -Path $temp -DestinationPath $pwd -Force del $temp