We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94d2782 commit 934d571Copy full SHA for 934d571
run.sh
@@ -89,14 +89,15 @@ fi
89
90
# Check AWS is installed
91
if ! type_exists 'awscli'; then
92
- set -e
93
h1 "Installing AWS CLI"
94
INSTALL_AWSCLI="sudo pip install awscli"
95
info "$INSTALL_AWSCLI"
96
INSTALL_AWSCLI_OUTPUT=$($INSTALL_AWSCLI 2>&1)
97
- info "$INSTALL_AWSCLI_OUTPUT"
+ if [ $? -ne 0 ]; then
+ warn "$INSTALL_AWSCLI_OUTPUT"
98
+ exit 1
99
+ fi
100
success "Installing AWS CLI (`aws --version`) succeeded"
- set +e
101
fi
102
103
# ----- Configure -----
wercker-step.yml
@@ -1,5 +1,5 @@
1
name: aws-code-deploy
2
-version: 0.0.21
+version: 0.0.22
3
description: Deploy applications with AWS Code Deploy
4
keywords:
5
- aws
0 commit comments