Skip to content

Commit f9454aa

Browse files
committed
Modify justfile such that build-wasmtime-runtime is done last
...and so "build" recipe doens't build runtime. Seeems to fix some local build issues Signed-off-by: Ludvig Liljenberg <[email protected]>
1 parent 9b9344c commit f9454aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ ensure-tools:
1919
cargo install cargo-component --locked --version 0.21.1
2020
cargo install wit-bindgen-cli --locked --version 0.43.0
2121

22-
build-all target=default-target: (build target) (build-wasm-examples target) (build-rust-wasm-examples target) (build-wasm-runtime target) (build-rust-component-examples target)
22+
build-all target=default-target: (build target) (build-wasm-examples target) (build-rust-wasm-examples target) (build-rust-component-examples target) (build-wasm-runtime target)
2323

24-
build target=default-target features="": (build-wasm-runtime target) (fmt-check)
24+
build target=default-target features="": (fmt-check)
2525
cargo build {{ if features =="" {''} else if features=="no-default-features" {"--no-default-features" } else {"--no-default-features -F " + features } }} --verbose --profile={{ if target == "debug" {"dev"} else { target } }}
2626

2727
mkdir-redist target=default-target:

0 commit comments

Comments
 (0)