Fix get-plugins.ps1

This commit is contained in:
LukeFZ
2023-12-01 10:45:09 +01:00
parent a3c0724107
commit 3e5622ac37

View File

@@ -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' } <EFBFBD>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