Adam Goldsmith
b8032326db
All checks were successful
/ Build-Chocolatey-Packages (push) Successful in 52s
12 lines
364 B
PowerShell
12 lines
364 B
PowerShell
$packageArgs = @{
|
|
packageName = $env:ChocolateyPackageName
|
|
FileType = 'exe'
|
|
SilentArgs = '/S'
|
|
Url64 = '\\ucs\software\CHITUBOX64Install_V1.9.4.exe'
|
|
Checksum64 = 'ee53fcb1f2f115fa0a8b413f9a4d1110f26a4416e449ac106352a9acac73a778'
|
|
ChecksumType64 = 'sha256'
|
|
ValidExitCodes = @(0, 1223)
|
|
}
|
|
|
|
Install-ChocolateyPackage @packageArgs
|