Fix an incorrect argument type in build script

This commit is contained in:
Anthony Lavado 2019-11-01 01:25:45 -04:00
parent bde1af5def
commit 0c003feac6

View file

@ -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',