Skip to content

Commit

Permalink
Fix get-plugins.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeFZ committed Dec 1, 2023
1 parent a3c0724 commit 3e5622a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions get-plugins.ps1
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3e5622a

Please sign in to comment.