chocolateyinstall.ps1 531 B

12345678910111213
  1. $ErrorActionPreference = 'Stop';
  2. $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
  3. $packageArgs = @{
  4. packageName = $env:ChocolateyPackageName
  5. fileFullPath = "$toolsDir\aws-iam-authenticator.exe"
  6. url64bit = 'https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/download/v0.5.6/aws-iam-authenticator_0.5.6_windows_amd64.exe'
  7. checksum64 = 'eb86f10ef97e593d8bf42c274fe44843a0deaacdc57b73ed5458e3e61a1ec5c1'
  8. checksumType64 = 'sha256'
  9. }
  10. Get-ChocolateyWebFile @packageArgs