also run clippy on examples

This commit is contained in:
Oliver Schneider 2016-08-17 17:04:21 +02:00
parent 6daa884e4f
commit 6d7269a675
No known key found for this signature in database
GPG key ID: 56D6EEA0FC67AC46

View file

@ -143,13 +143,20 @@ pub fn main() {
let args = std::env::args().skip(2);
if let Some(first) = target.kind.get(0) {
if target.kind.len() > 1 || first.ends_with("lib") {
println!("compiling library");
if let Err(code) = process(std::iter::once("--lib".to_owned()).chain(args), &dep_path, &sys_root) {
std::process::exit(code);
}
} else if first == "bin" {
println!("compiling bin target `{}`", target.name);
if let Err(code) = process(vec!["--bin".to_owned(), target.name].into_iter().chain(args), &dep_path, &sys_root) {
std::process::exit(code);
}
} else if first == "example" {
println!("compiling example target `{}`", target.name);
if let Err(code) = process(vec!["--example".to_owned(), target.name].into_iter().chain(args), &dep_path, &sys_root) {
std::process::exit(code);
}
}
} else {
panic!("badly formatted cargo metadata: target::kind is an empty array");