From 26f3c6337559b9f07fc417a7455e86e262987a08 Mon Sep 17 00:00:00 2001 From: ludamad Date: Mon, 21 Oct 2024 17:23:05 -0400 Subject: [PATCH] chore: silence cache-download.sh Somehow adding a lot of progress noise --- build-system/s3-cache-scripts/cache-download.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-system/s3-cache-scripts/cache-download.sh b/build-system/s3-cache-scripts/cache-download.sh index 7bca61ba7b7e..f47fb2103354 100755 --- a/build-system/s3-cache-scripts/cache-download.sh +++ b/build-system/s3-cache-scripts/cache-download.sh @@ -18,7 +18,7 @@ function on_exit() { trap on_exit EXIT # Attempt to download the cache file -aws ${S3_BUILD_CACHE_AWS_PARAMS:-} s3 cp "s3://aztec-ci-artifacts/build-cache/$TAR_FILE" "$TAR_FILE" --quiet --no-progress || (echo "Cache download of $TAR_FILE failed." && exit 1) +aws ${S3_BUILD_CACHE_AWS_PARAMS:-} s3 cp "s3://aztec-ci-artifacts/build-cache/$TAR_FILE" "$TAR_FILE" --quiet &>/dev/null || (echo "Cache download of $TAR_FILE failed." && exit 1) # Extract the cache file mkdir -p "$OUT_DIR"