Skip to content

Commit 32a0069

Browse files
committed
no println output
1 parent 6d7269a commit 32a0069

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/main.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,17 +143,14 @@ pub fn main() {
143143
let args = std::env::args().skip(2);
144144
if let Some(first) = target.kind.get(0) {
145145
if target.kind.len() > 1 || first.ends_with("lib") {
146-
println!("compiling library");
147146
if let Err(code) = process(std::iter::once("--lib".to_owned()).chain(args), &dep_path, &sys_root) {
148147
std::process::exit(code);
149148
}
150149
} else if first == "bin" {
151-
println!("compiling bin target `{}`", target.name);
152150
if let Err(code) = process(vec!["--bin".to_owned(), target.name].into_iter().chain(args), &dep_path, &sys_root) {
153151
std::process::exit(code);
154152
}
155153
} else if first == "example" {
156-
println!("compiling example target `{}`", target.name);
157154
if let Err(code) = process(vec!["--example".to_owned(), target.name].into_iter().chain(args), &dep_path, &sys_root) {
158155
std::process::exit(code);
159156
}

0 commit comments

Comments
 (0)