AWSCLI

Slava's Avatar

Slava

25 Jan, 2019 11:52 PM

How to install latest AWS CLI in appveyor?

  1. 1 Posted by Ilya Finkelshte... on 26 Jan, 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 28 Mar, 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

 

26 Sep, 2024 03:49 PM
26 Sep, 2024 09:02 AM
25 Sep, 2024 07:07 PM
24 Sep, 2024 08:39 PM
24 Sep, 2024 06:47 AM
20 Sep, 2024 05:50 PM