From ca48e3f30426d1cfc9d2da5dca5cbab55f304731 Mon Sep 17 00:00:00 2001 From: Journey Date: Mon, 5 Feb 2024 19:49:21 -0600 Subject: [PATCH] [AU sonarr] I'm a dummy and forgot to change the install script.. --- automatic/sonarr/tools/chocolateyInstall.ps1 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/automatic/sonarr/tools/chocolateyInstall.ps1 b/automatic/sonarr/tools/chocolateyInstall.ps1 index 7f590e84..11cbc660 100644 --- a/automatic/sonarr/tools/chocolateyInstall.ps1 +++ b/automatic/sonarr/tools/chocolateyInstall.ps1 @@ -3,12 +3,14 @@ $packageName = 'sonarr' $toolsDir = Split-Path $MyInvocation.MyCommand.Definition -$fileLocation = Get-Item "$toolsDir\*.exe" +$fileLocation32bit = Get-Item "$toolsDir\*x86-installer.exe" +$fileLocation64bit = Get-Item "$toolsDir\*x64-installer.exe" $packageArgs = @{ packageName = $packageName fileType = 'exe' - file = $fileLocation + file = $fileLocation32bit + file64 = $fileLocation64bit silentArgs = "/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /LOG=`"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).InnoInstall.log`"" validExitCodes = @(0) }