Skip to content

Commit fd1a393

Browse files
committed
Print "Checking/Building ..." message even when --dry-run is passed
This makes it a lot easier to understand what commands will be run without having to parse the `-vv` output, which isn't meant to be user facing.
1 parent f28875e commit fd1a393

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/bootstrap/lib.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -1019,10 +1019,12 @@ impl Build {
10191019
}
10201020

10211021
fn info(&self, msg: &str) {
1022-
if self.config.dry_run() {
1023-
return;
1022+
match self.config.dry_run {
1023+
DryRun::SelfCheck => return,
1024+
DryRun::Disabled | DryRun::UserSelected => {
1025+
println!("{}", msg);
1026+
}
10241027
}
1025-
println!("{}", msg);
10261028
}
10271029

10281030
/// Returns the number of parallel jobs that have been configured for this

0 commit comments

Comments
 (0)