From b18d16accc37a0eca85eeef6e8681b1a2b44deaf Mon Sep 17 00:00:00 2001 From: Paul Schoenfelder Date: Fri, 18 May 2018 13:40:58 -0400 Subject: [PATCH] [deployment] Fix create-deployment invocation --- bin/deploy | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bin/deploy b/bin/deploy index 2507fdb134..f346f52f99 100755 --- a/bin/deploy +++ b/bin/deploy @@ -40,9 +40,6 @@ function deploy_chain() { # when trying to add files with timestamps before 1980 in them. find ./ -exec touch {} \; - # TODO: REMOVE THIS - ls -la - log "Pushing new revision to CodeDeploy app '${app}' in S3 bucket '${bucket}', as '${release_name}.zip'.." aws deploy push \ @@ -58,7 +55,7 @@ function deploy_chain() { log "Creating deployment for CodeDeploy app '${app}', using deployment config ${deploy_config}, and group ${deploy_group}" - aws create-deployment \ + aws deploy create-deployment \ --description="${PREFIX} deployment of commit ${CIRCLE_SHA1} via build ${CIRCLE_BUILD_NUM} at ${ts}" \ --application-name="${app}" \ --deployment-config-name="${deploy_config}" \