mirror of
https://github.com/rbenv/ruby-build.git
synced 2024-12-28 20:55:31 +01:00
Disable progress output when uploading to S3
This commit is contained in:
parent
dc047ade1e
commit
075ad3bee9
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue