Add clean-vendor just target
This commit is contained in:
parent
4718703fe5
commit
04601284af
1 changed files with 5 additions and 2 deletions
7
justfile
7
justfile
|
|
@ -22,10 +22,13 @@ default: build-release
|
|||
clean:
|
||||
cargo clean
|
||||
|
||||
# `cargo clean` and removes vendored dependencies
|
||||
clean-dist: clean
|
||||
# Removes vendored dependencies
|
||||
clean-vendor:
|
||||
rm -rf .cargo vendor vendor.tar
|
||||
|
||||
# `cargo clean` and removes vendored dependencies
|
||||
clean-dist: clean clean-vendor
|
||||
|
||||
# Compiles with debug profile
|
||||
build-debug *args:
|
||||
cargo build {{args}}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue