wasmi/check.sh

13 lines
133 B
Bash
Executable File

#!/usr/bin/env bash
set -eux
cd $(dirname $0)
cargo check --tests
cargo check \
--manifest-path=spec/Cargo.toml \
--tests
cd -