chocolateyinstall.ps1 494 B

1234567891011121314
  1. $ErrorActionPreference = 'Stop';
  2. $packageName = $env:ChocolateyPackageName
  3. $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
  4. $packageArgs = @{
  5. packageName = $packageName
  6. unzipLocation = $toolsDir
  7. url64bit = 'https://binaries.rightscale.com/rsbin/right_st/v1.9.4/right_st-windows-amd64.zip'
  8. checksum64 = '0321a05b1c1866a7d6b5e6c62324c03cf56c6e82147d36a023c6ff76357ef013'
  9. checksumType64 = 'sha256'
  10. }
  11. Install-ChocolateyZipPackage @packageArgs