From 875fa737286520894daba2daabb308b57ce8afe2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= <bkchr@users.noreply.github.com> Date: Tue, 3 Sep 2019 15:13:32 +0200 Subject: [PATCH] Fix `build-only-wasm` script (#3536) --- substrate/scripts/build-only-wasm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/scripts/build-only-wasm.sh b/substrate/scripts/build-only-wasm.sh index 51e904edd5a..b6da3319c82 100755 --- a/substrate/scripts/build-only-wasm.sh +++ b/substrate/scripts/build-only-wasm.sh @@ -23,7 +23,7 @@ if [ -d $WASM_BUILDER_RUNNER ]; then export DEBUG=false export OUT_DIR="$PROJECT_ROOT/target/release/build" cargo run --release --manifest-path="$WASM_BUILDER_RUNNER/Cargo.toml" \ - | grep -vE "cargo:rerun-if-|Executing build command" \ + | grep -vE "cargo:rerun-if-|Executing build command" else cargo build --release -p $1 fi -- GitLab