Adam Goldsmith
3a7dcee588
All checks were successful
/ Build-Chocolatey-Packages (push) Successful in 1m58s
12 lines
385 B
PowerShell
12 lines
385 B
PowerShell
$packageArgs = @{
|
|
packageName = $env:ChocolateyPackageName
|
|
FileType = 'exe'
|
|
SilentArgs = '/S'
|
|
File64 = '\\ucs\software\VCarveProMakerspaceEditionV12004_Setup.exe'
|
|
Checksum64 = 'f590a7a77cb592ef2c0d47a1162179e066c288c3e93e5be81a0a4f5c0ef7f25f'
|
|
ChecksumType64 = 'sha256'
|
|
ValidExitCodes = @(0, 1223)
|
|
}
|
|
|
|
Install-ChocolateyInstallPackage @packageArgs
|