chocolateyinstall.ps1 485 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.10.1/rsc-windows-amd64.zip'
  8. checksum64 = '0b6736ab41ad98bb4769996b04b69c1c58c8b595487bb01c560a59aeb1c94e09'
  9. checksumType64 = 'sha256'
  10. }
  11. Install-ChocolateyZipPackage @packageArgs