Skip to content

Commit

Permalink
replace wget with Invoke-WebRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeFZ committed Dec 1, 2023
1 parent 3e5622a commit c2cb88a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion get-plugins.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit c2cb88a

Please sign in to comment.