bugfix: surround URL with quotes on Invoke-RestMethod

This commit is contained in:
Baipyrus 2024-09-06 12:36:05 +02:00
parent 798e20b2c4
commit 231a5101d7

View File

@ -42,7 +42,7 @@ if ($isRelease)
{ {
# Download release files from github as-is # Download release files from github as-is
Write-Host "Downloading program into local directory..." -ForegroundColor Cyan Write-Host "Downloading program into local directory..." -ForegroundColor Cyan
Invoke-RestMethod https://github.com/Baipyrus/ProxySwitcher/releases/latest/download/ProxySwitcher.zip -OutFile $env:TMP Invoke-RestMethod "https://github.com/Baipyrus/ProxySwitcher/releases/latest/download/ProxySwitcher.zip" -OutFile $env:TMP
# Expand Archive to program directory # Expand Archive to program directory
Expand-Archive "$env:TMP\ProxySwitcher.zip" -DestinationPath $programPath Expand-Archive "$env:TMP\ProxySwitcher.zip" -DestinationPath $programPath