chocolateyinstall.ps1 453 B

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