bottom/scripts/windows/choco/chocolateyinstall.ps1.template
2022-12-31 22:08:52 -05:00

16 lines
487 B
Plaintext

$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'https://github.com/ClementTsang/bottom/releases/download/$version/bottom_x86_64-pc-windows-msvc.zip'
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'bottom'
unzipLocation = $toolsDir
fileType = 'exe'
url = $url
checksum = '$hash_64'
checksumType = 'sha1'
}
Install-ChocolateyZipPackage @packageArgs