Skip to content

Commit

Permalink
Avoid extra Cargo installation artifacts
Browse files Browse the repository at this point in the history
As @bjorn3 mentioned in #420, using `--no-track` should get rid of the extra files that show up after the `cargo install`. Fixes #420.
  • Loading branch information
abrown authored Jun 28, 2024
1 parent 7ff81cb commit 6957866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ build/llvm.BUILT:
# used for the `wasm32-wasip2` target natively by Clang. Note that `--root`
# passed to `cargo install` will place it in the output directory automatically.
build/wasm-component-ld.BUILT: build/llvm.BUILT
cargo install wasm-component-ld@0.5.0 --root $(BUILD_PREFIX)
cargo install --no-track wasm-component-ld@0.5.0 --root $(BUILD_PREFIX)
touch build/wasm-component-ld.BUILT


Expand Down

0 comments on commit 6957866

Please sign in to comment.