mint: turn off progress for awscli sync test (#8158)

Bumping up to awscli 1.11.177 which supports --no-progress flag
master
poornas 5 years ago committed by Harshavardhana
parent 847a3ea0a2
commit 4553db3872
  1. 2
      mint/build/awscli/install.sh
  2. 2
      mint/run/core/awscli/test.sh

@ -15,6 +15,6 @@
# limitations under the License.
#
AWS_CLI_VERSION="1.11.112"
AWS_CLI_VERSION="1.11.177"
python -m pip install awscli==$AWS_CLI_VERSION

@ -863,7 +863,7 @@ function test_aws_s3_sync() {
# if make bucket succeeds sync all the files in a directory
if [ $rv -eq 0 ]; then
function="${AWS} s3 sync $MINT_DATA_DIR s3://${bucket_name}/"
function="${AWS} s3 sync --no-progress $MINT_DATA_DIR s3://${bucket_name}/"
test_function=${function}
out=$($function 2>&1)
rv=$?

Loading…
Cancel
Save