Skip to content

Commit 35c271e

Browse files
authored
Avoid extra Cargo installation artifacts (#432)
As @bjorn3 mentioned in #420, using `--no-track` should get rid of the extra files that show up after the `cargo install`. Fixes #420.
1 parent 7ff81cb commit 35c271e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ build/llvm.BUILT:
131131
# used for the `wasm32-wasip2` target natively by Clang. Note that `--root`
132132
# passed to `cargo install` will place it in the output directory automatically.
133133
build/wasm-component-ld.BUILT: build/llvm.BUILT
134-
cargo install [email protected] --root $(BUILD_PREFIX)
134+
cargo install --no-track [email protected] --root $(BUILD_PREFIX)
135135
touch build/wasm-component-ld.BUILT
136136

137137

0 commit comments

Comments
 (0)