Files
TimberWinR/chocolateyInstall.ps1.template
2015-06-04 08:02:13 -04:00

15 lines
387 B
Plaintext

$packageName = 'TimberWinR-${version}'
$fileType = 'msi'
$silentArgs = '/quiet'
$scriptPath = $(Split-Path $MyInvocation.MyCommand.Path)
$fileFullPath = Join-Path $scriptPath 'TimberWinR-${version}.msi'
try {
Install-ChocolateyInstallPackage $packageName $fileType $silentArgs $fileFullPath
} catch {
Write-ChocolateyFailure $packageName $($_.Exception.Message)
throw
}