mirror of
https://github.com/Baipyrus/ProxySwitcher.git
synced 2024-12-26 04:31:45 +00:00
Merge pull request #16 from Baipyrus/download-recent-release
Download Most Recent Release Instead Of Latest
This commit is contained in:
commit
55f3ed336f
@ -45,7 +45,10 @@ if ($isRelease)
|
||||
|
||||
# Download release files from github as-is
|
||||
Write-Host "Downloading program into local directory..." -ForegroundColor Cyan
|
||||
Invoke-RestMethod "https://github.com/Baipyrus/ProxySwitcher/releases/latest/download/ProxySwitcher.zip" -OutFile $tmpPRSWzip
|
||||
$releases = Invoke-RestMethod "https://api.github.com/repos/Baipyrus/ProxySwitcher/releases"
|
||||
$assets = $releases[0].assets
|
||||
$archive = $assets | Where-Object name -match "zip"
|
||||
Invoke-RestMethod $archive.browser_download_url -OutFile $tmpPRSWzip
|
||||
|
||||
# Expand Archive to program directory
|
||||
Expand-Archive $tmpPRSWzip -DestinationPath $programPath -Force
|
||||
|
Loading…
Reference in New Issue
Block a user