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