Updated build-jellyfin.ps1 to pull from my mirror

Updated it to pull from my mirror on Azure.
pull/1954/head
LogicalPhallacy 5 years ago committed by GitHub
parent 8edb1c49d8
commit fd8d4894ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -84,8 +84,9 @@ function Install-NSSM {
Write-Warning "NSSM will not be installed" Write-Warning "NSSM will not be installed"
}else{ }else{
Write-Verbose "Downloading NSSM" Write-Verbose "Downloading NSSM"
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 # [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Invoke-WebRequest -Uri https://nssm.cc/ci/nssm-2.24-101-g897c7ad.zip -UseBasicParsing -OutFile "$tempdir/nssm.zip" | Write-Verbose # Temporary workaround, file is hosted in an azure blob with a custom domain in front for brevity
Invoke-WebRequest -Uri http://files.evilt.win/nssm/nssm-2.24-101-g897c7ad.zip -UseBasicParsing -OutFile "$tempdir/nssm.zip" | Write-Verbose
} }
Expand-Archive "$tempdir/nssm.zip" -DestinationPath "$tempdir/nssm/" -Force | Write-Verbose Expand-Archive "$tempdir/nssm.zip" -DestinationPath "$tempdir/nssm/" -Force | Write-Verbose

Loading…
Cancel
Save