AWSCLI

Slava's Avatar

Slava

Jan 25, 2019 @ 11:52 PM

How to install latest AWS CLI in appveyor?

  1. 1 Posted by Ilya Finkelshte... on Jan 26, 2019 @ 12:31 AM

    Ilya Finkelshteyn's Avatar

    Run this PowerShell script at install stage:

    Write-Host "Installing AWS CLI..." -ForegroundColor Cyan
    
    Write-Host "Downloading..."
    $msiPath = "$($env:USERPROFILE)\AWSCLI64.msi"
    (New-Object Net.WebClient).DownloadFile('https://s3.amazonaws.com/aws-cli/AWSCLI64.msi', $msiPath)
    
    Write-Host "Installing..."
    cmd /c start /wait msiexec /i $msiPath /quiet
    del $msiPath
    
  2. Ilya Finkelshteyn closed this discussion on Mar 28, 2019 @ 09:00 PM.

Comments are currently closed for this discussion. You can start a new one.

Keyboard shortcuts

Generic

? Show this help
ESC Blurs the current field

Comment Form

r Focus the comment reply box
^ + ↩ Submit the comment

You can use Command ⌘ instead of Control ^ on Mac