Passthru build.sh/script.sh command line arguments (#2837)

This commit is contained in:
Lio李欧
2019-06-11 22:00:27 +08:00
committed by Bastian Köcher
parent cf8a021e22
commit 66ae3a57ff
8 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -20,12 +20,12 @@ case $TARGET in
sudo apt-get -y update
sudo apt-get install -y cmake pkg-config libssl-dev
cargo test --all --release --locked
cargo test --all --release --locked "$@"
;;
"wasm")
# Install prerequisites and build all wasm projects
./scripts/init.sh
./scripts/build.sh
./scripts/build.sh "$@"
;;
esac