We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f28875e commit fd1a393Copy full SHA for fd1a393
src/bootstrap/lib.rs
@@ -1019,10 +1019,12 @@ impl Build {
1019
}
1020
1021
fn info(&self, msg: &str) {
1022
- if self.config.dry_run() {
1023
- return;
+ match self.config.dry_run {
+ DryRun::SelfCheck => return,
1024
+ DryRun::Disabled | DryRun::UserSelected => {
1025
+ println!("{}", msg);
1026
+ }
1027
- println!("{}", msg);
1028
1029
1030
/// Returns the number of parallel jobs that have been configured for this
0 commit comments