51ae3d6e72
* Travis uses Go 1.11 * Use go modules instead of storj-vendor * Automatic caching of downloaded dependencies * Ensures that modules incompatible linters run with modules
13 lines
206 B
Bash
13 lines
206 B
Bash
set -x
|
|
|
|
mkdir -p $HOME/awscli
|
|
pushd $HOME/awscli
|
|
|
|
curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "awscli-bundle.zip"
|
|
unzip awscli-bundle.zip
|
|
./awscli-bundle/install -b ~/bin/aws
|
|
|
|
popd
|
|
|
|
set +x
|