Skip to content

Commit f1a43af

Browse files
committed
ci: fix check contract step
1 parent 020a747 commit f1a43af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ env = { RUSTFLAGS = "-C link-arg=-s" }
9292
[tasks.check_contracts]
9393
dependencies = ["wasm"]
9494
script = '''
95-
cargo install --debug --version 1.0.0 --features iterator --example check_contract -- cosmwasm-vm
95+
if [[ ! -e ~/.cargo/bin/check_contract ]]; then cargo install --debug --version 1.0.0 --features iterator --force --example check_contract -- cosmwasm-vm ; fi
9696
for W in ./target/wasm32-unknown-unknown/release/*.wasm
9797
do
9898
echo -n "Checking `basename $W`... "

0 commit comments

Comments
 (0)