diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2019-10-29 16:22:58 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-29 16:22:58 +0900 |
| commit | ef623f512903624bba48f243e3a659ec46064054 (patch) | |
| tree | fbcf995931f67798390db4f22c9b7bc2311e9bda /deployment/windows | |
| parent | 0449d7c5e10083ec8c9daaefa2e6d7585c40c5ca (diff) | |
| parent | 9c65853ddd49a8235dbe547e8d5d635d9f157f75 (diff) | |
Merge pull request #1954 from LogicalPhallacy/LogicalPhallacy-patch-NSSM
Use mirror for NSSM
Diffstat (limited to 'deployment/windows')
| -rw-r--r-- | deployment/windows/build-jellyfin.ps1 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/deployment/windows/build-jellyfin.ps1 b/deployment/windows/build-jellyfin.ps1 index c4fb4b995..5e06b9c06 100644 --- a/deployment/windows/build-jellyfin.ps1 +++ b/deployment/windows/build-jellyfin.ps1 @@ -84,8 +84,9 @@ function Install-NSSM { Write-Warning "NSSM will not be installed" }else{ Write-Verbose "Downloading NSSM" - [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 + # [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 + # 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 |
