mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
6 lines
196 B
Bash
Executable File
6 lines
196 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_pedantic -Dclippy || exit 1
|
|
rm -rf target_recur
|
|
|