mirror of https://github.com/certusone/wasmd.git
19 lines
442 B
Bash
Executable File
19 lines
442 B
Bash
Executable File
#!/bin/bash
|
|
set -o errexit -o nounset -o pipefail
|
|
command -v shellcheck > /dev/null && shellcheck "$0"
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "Usage: ./download_releases.sh RELEASE_TAG"
|
|
exit 1
|
|
fi
|
|
|
|
tag="$1"
|
|
|
|
for contract in cw20_base cw1_whitelist; do
|
|
url="https://github.com/CosmWasm/cw-plus/releases/download/$tag/${contract}.wasm"
|
|
echo "Downloading $url ..."
|
|
wget -O "${contract}.wasm" "$url"
|
|
done
|
|
|
|
rm -f version.txt
|
|
echo "$tag" >version.txt |