mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
18 lines
439 B
PowerShell
18 lines
439 B
PowerShell
################################################################################
|
|
## File: Install-awscli.ps1
|
|
## Desc: Install awscli
|
|
################################################################################
|
|
|
|
Choco-Install -PackageName awscli
|
|
|
|
$env:Path = $env:Path + ";$env:ProgramFiles\Amazon\AWSCLIV2"
|
|
if (Get-Command -Name 'aws')
|
|
{
|
|
Write-Host 'awscli on path'
|
|
}
|
|
else
|
|
{
|
|
Write-Host 'awscli is not on path'
|
|
exit 1
|
|
}
|