mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 13:43:17 +00:00
5 lines
180 B
Bash
Executable file
5 lines
180 B
Bash
Executable file
#!/bin/sh
|
|
rm -rf target*/*so
|
|
cargo build --lib && cp -R target target_recur && cargo rustc -- -Zextra-plugins=clippy -Ltarget_recur/debug -Dclippy || exit 1
|
|
rm -rf target_recur
|
|
|