We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
BootstrapCommand
1 parent 3bb0c94 commit 236f6baCopy full SHA for 236f6ba
src/bootstrap/src/lib.rs
@@ -586,7 +586,11 @@ impl Build {
586
.args(&["diff-index", "--quiet", "HEAD"])
587
.current_dir(&absolute_path),
588
)
589
- .allow_failure(),
+ .allow_failure()
590
+ .output_mode(match self.is_verbose() {
591
+ true => OutputMode::PrintAll,
592
+ false => OutputMode::PrintOutput,
593
+ }),
594
);
595
if has_local_modifications {
596
self.run(Command::new("git").args(&["stash", "push"]).current_dir(&absolute_path));
0 commit comments