From f4a045968702ad9ca27ca3aff5ec03f4d3b325d1 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Thu, 5 Aug 2021 16:31:33 +0200 Subject: [PATCH] Silence curl downloads --- scripts/wasmd/contracts/download.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/wasmd/contracts/download.sh b/scripts/wasmd/contracts/download.sh index 175eb455..091ee084 100755 --- a/scripts/wasmd/contracts/download.sh +++ b/scripts/wasmd/contracts/download.sh @@ -5,10 +5,10 @@ COSMWASM_VERSION="v0.16.0-rc5" PLUS_VERSION="v0.8.0-rc1" -curl -L -O "https://github.com/CosmWasm/cosmwasm/releases/download/${COSMWASM_VERSION}/hackatom.wasm" -curl -L -O "https://github.com/CosmWasm/cosmwasm/releases/download/${COSMWASM_VERSION}/ibc_reflect.wasm" +curl -sS -L -O "https://github.com/CosmWasm/cosmwasm/releases/download/${COSMWASM_VERSION}/hackatom.wasm" +curl -sS -L -O "https://github.com/CosmWasm/cosmwasm/releases/download/${COSMWASM_VERSION}/ibc_reflect.wasm" -curl -L -O "https://github.com/CosmWasm/cosmwasm-plus/releases/download/${PLUS_VERSION}/cw1_subkeys.wasm" -curl -L -O "https://github.com/CosmWasm/cosmwasm-plus/releases/download/${PLUS_VERSION}/cw3_fixed_multisig.wasm" +curl -sS -L -O "https://github.com/CosmWasm/cosmwasm-plus/releases/download/${PLUS_VERSION}/cw1_subkeys.wasm" +curl -sS -L -O "https://github.com/CosmWasm/cosmwasm-plus/releases/download/${PLUS_VERSION}/cw3_fixed_multisig.wasm" sha256sum *.wasm >checksums.sha256