Merge branch 'master' into unnecessary_filter_map
This commit is contained in:
commit
2f364d9ac5
3 changed files with 8 additions and 5 deletions
|
@ -4,14 +4,16 @@ fn dogfood() {
|
|||
return;
|
||||
}
|
||||
let root_dir = std::env::current_dir().unwrap();
|
||||
for d in &[".", "clippy_lints"] {
|
||||
for d in &[".", "clippy_lints", "rustc_tools_util", "clippy_dev"] {
|
||||
std::env::set_current_dir(root_dir.join(d)).unwrap();
|
||||
let output = std::process::Command::new("cargo")
|
||||
.arg("run")
|
||||
.arg("--bin")
|
||||
.arg("cargo-clippy")
|
||||
.arg("--all-features")
|
||||
.arg("--manifest-path")
|
||||
.arg(root_dir.join("Cargo.toml"))
|
||||
.args(&["--", "-W clippy::internal"])
|
||||
.env("CLIPPY_DOGFOOD", "true")
|
||||
.output()
|
||||
.unwrap();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue