From 5e58d7c1ac30cc9391449d4663711e0551ccd6bb Mon Sep 17 00:00:00 2001 From: Mo Date: Thu, 23 Jun 2022 13:40:28 -0400 Subject: [PATCH] Set AWS_PAGER to empty for cloudfront invalidation command --- ci/scripts/deploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/scripts/deploy b/ci/scripts/deploy index b2e96bf9..a7964df4 100755 --- a/ci/scripts/deploy +++ b/ci/scripts/deploy @@ -10,4 +10,4 @@ touch index.html && aws s3 cp index.html s3://${S3_BUCKET} --region ${REGION} # invalidate cloudfront distribution echo "invalidate cloudfront distribution 🔄" -aws cloudfront create-invalidation --distribution-id ${CLOUDFRONT_DISTRIBUTION_ID} --paths '/docs*' \ No newline at end of file +AWS_PAGER="" aws cloudfront create-invalidation --distribution-id ${CLOUDFRONT_DISTRIBUTION_ID} --paths '/docs*' \ No newline at end of file