chocolateyinstall.ps1 484 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/rsc/v6.9.0/rsc-windows-amd64.zip'
  8. checksum64 = '810eb404c4c83655e29ae4d3a9f8dd1dfccd8d3c9ef22d7a15602821bd533326'
  9. checksumType64 = 'sha256'
  10. }
  11. Install-ChocolateyZipPackage @packageArgs