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 84eaac2 commit 51e6d6cCopy full SHA for 51e6d6c
bin/aws-code-deploy.sh
@@ -142,11 +142,21 @@ if [ -z "$AWS_CODE_DEPLOY_DEPLOYMENT_GROUP_NAME" ]; then
142
exit 1
143
fi
144
145
+if [ -z "$AWS_CODE_DEPLOY_APP_SOURCE" ]; then
146
+ error "Please set the \"\$AWS_CODE_DEPLOY_APP_SOURCE\" to a pre-packaged bundle or a directory to be deployed"
147
+ exit 1
148
+fi
149
+
150
if [ -z "$AWS_CODE_DEPLOY_S3_BUCKET" ]; then
151
error "Please set the \"\$AWS_CODE_DEPLOY_S3_BUCKET\" variable"
152
153
154
155
+if [ -z "$AWS_CODE_DEPLOY_S3_FILENAME" ]; then
156
+ error "Please set the \"\$AWS_CODE_DEPLOY_S3_FILENAME\" variable"
157
158
159
160
161
162
# ----- Install AWS Cli -----
0 commit comments