mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-01-01 14:44:48 +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
|
done
|
||||||
if [ -n "$tmp_path" ]; then
|
if [ -n "$tmp_path" ]; then
|
||||||
echo "Uploading..."
|
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
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue