Disable progress output when uploading to S3

This commit is contained in:
Mislav Marohnić 2021-07-31 13:43:42 +02:00
parent dc047ade1e
commit 075ad3bee9

View file

@ -72,7 +72,7 @@ update() {
done
if [ -n "$tmp_path" ]; then
echo "Uploading..."
aws s3 sync --acl=public-read --size-only "$tmp_path" "s3://${AMAZON_S3_BUCKET?}"
aws s3 sync --acl=public-read --size-only --no-progress "$tmp_path" "s3://${AMAZON_S3_BUCKET?}"
fi
}