Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

Commit

Permalink
[AU sonarr]
Browse files Browse the repository at this point in the history
I'm a dummy and forgot to change the install script..
  • Loading branch information
JourneyOver committed Feb 6, 2024
1 parent 16d7985 commit ca48e3f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions automatic/sonarr/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit ca48e3f

Please sign in to comment.