diff options
| author | Anthony Lavado <anthony@lavado.ca> | 2019-11-01 01:25:45 -0400 |
|---|---|---|
| committer | Anthony Lavado <anthony@lavado.ca> | 2019-11-01 01:25:45 -0400 |
| commit | 0c003feac60055abce7810cb1060dd7264a1631a (patch) | |
| tree | 60d44f99d1c64457502388823960db84af623a8a | |
| parent | bde1af5def459521c3e577f51392e5fd087ced6e (diff) | |
Fix an incorrect argument type in build script
| -rw-r--r-- | deployment/windows/build-jellyfin.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deployment/windows/build-jellyfin.ps1 b/deployment/windows/build-jellyfin.ps1 index 652b17773..a360c6a30 100644 --- a/deployment/windows/build-jellyfin.ps1 +++ b/deployment/windows/build-jellyfin.ps1 @@ -8,7 +8,7 @@ param( [switch]$GenerateZip, [string]$InstallLocation = "./dist/jellyfin-win-nsis", [string]$UXLocation = "../jellyfin-ux", - [string]$InstallTrayApp, + [switch]$InstallTrayApp, [ValidateSet('Debug','Release')][string]$BuildType = 'Release', [ValidateSet('Quiet','Minimal', 'Normal')][string]$DotNetVerbosity = 'Minimal', [ValidateSet('win','win7', 'win8','win81','win10')][string]$WindowsVersion = 'win', |
