From 3e5622ac3782aa84b3546a4b7d91bd05e42d8760 Mon Sep 17 00:00:00 2001 From: LukeFZ <17146677+LukeFZ@users.noreply.github.com> Date: Fri, 1 Dec 2023 10:45:09 +0100 Subject: [PATCH] Fix get-plugins.ps1 --- get-plugins.ps1 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/get-plugins.ps1 b/get-plugins.ps1 index ca30d52..2a85ca6 100644 --- a/get-plugins.ps1 +++ b/get-plugins.ps1 @@ -1,8 +1,8 @@ -# Copyright 2020-2021 Katy Coe - http://www.djkaty.com - https://github.com/djkaty -# All rights reserved. - -# 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 -Expand-Archive -Path $temp -DestinationPath $pwd -Force -del $temp +# Copyright 2020-2021 Katy Coe - http://www.djkaty.com - https://github.com/djkaty +# All rights reserved. + +# 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 +Expand-Archive -Path $temp -DestinationPath $pwd -Force +del $temp