Installs AWS CLI

This commit is contained in:
Aaron Louie 2020-05-14 09:18:10 -04:00
parent 4e9afc1b6d
commit 8db40d24d0
1 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,9 @@
#!/bin/bash
# Install AWS CLI
pip install --user awscli;
export PATH=$PATH:$HOME/.local/bin;
function branch_to_tag () {
if [ "$1" == "latest" ]; then echo "production"; else echo "$1" ; fi
}