mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 06:12:40 +00:00
chore: adds a cleaning recipie
This commit is contained in:
parent
80cc68748d
commit
d0d8622dd6
1 changed files with 6 additions and 0 deletions
6
justfile
6
justfile
|
@ -28,3 +28,9 @@ remove-nightly:
|
|||
|
||||
@lint: nightly
|
||||
cargo build --features lints && just remove-nightly
|
||||
|
||||
clean:
|
||||
cargo clean
|
||||
find . -type f -name "*.orig" -exec rm {} \;
|
||||
find . -type f -name "*.bk" -exec rm {} \;
|
||||
find . -type f -name ".*~" -exec rm {} \;
|
||||
|
|
Loading…
Reference in a new issue