chocolateyinstall.ps1 533 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.6.28/aws-iam-authenticator_0.6.28_windows_amd64.exe'
  7. checksum64 = '4e88da292a73dfc61cdc7b6ab2f6276c0c0cd3f2c9cbe364eb3f4b38c92e36c8'
  8. checksumType64 = 'sha256'
  9. }
  10. Get-ChocolateyWebFile @packageArgs