diff options
| author | Erwin de Haan <EraYaN@users.noreply.github.com> | 2020-01-15 12:17:42 +0100 |
|---|---|---|
| committer | Erwin de Haan <EraYaN@users.noreply.github.com> | 2020-01-15 12:17:42 +0100 |
| commit | ec8baaf48d28526e888d2301c5eaf207455c3dfd (patch) | |
| tree | a6c3308674fe82fee7f2d5b98896079bd2637845 /deployment | |
| parent | 1ad6f016172cb094b0ead5ff3517568d027708e7 (diff) | |
Switch around SetCompressor arguments. Hide progress bars for powershell.
Diffstat (limited to 'deployment')
| -rw-r--r-- | deployment/windows/build-jellyfin.ps1 | 2 | ||||
| -rw-r--r-- | deployment/windows/jellyfin.nsi | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/deployment/windows/build-jellyfin.ps1 b/deployment/windows/build-jellyfin.ps1 index dde6eb8fc..bb2f50919 100644 --- a/deployment/windows/build-jellyfin.ps1 +++ b/deployment/windows/build-jellyfin.ps1 @@ -15,6 +15,8 @@ param( [ValidateSet('x64','x86', 'arm', 'arm64')][string]$Architecture = 'x64' ) +$ProgressPreference = 'SilentlyContinue' # Speedup all downloads by hiding progress bars. + #PowershellCore and *nix check to make determine which temp dir to use. if(($PSVersionTable.PSEdition -eq 'Core') -and (-not $IsWindows)){ $TempDir = mktemp -d diff --git a/deployment/windows/jellyfin.nsi b/deployment/windows/jellyfin.nsi index 3e8d687e7..86724b8f4 100644 --- a/deployment/windows/jellyfin.nsi +++ b/deployment/windows/jellyfin.nsi @@ -1,5 +1,5 @@ !verbose 3 -SetCompressor bzip2 /SOLID +SetCompressor /SOLID bzip2 ShowInstDetails show ShowUninstDetails show Unicode True |
