Skip to content

Commit 236f6ba

Browse files
committed
set BootstrapCommand output mode for submodules
Signed-off-by: onur-ozkan <[email protected]>
1 parent 3bb0c94 commit 236f6ba

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/bootstrap/src/lib.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,11 @@ impl Build {
586586
.args(&["diff-index", "--quiet", "HEAD"])
587587
.current_dir(&absolute_path),
588588
)
589-
.allow_failure(),
589+
.allow_failure()
590+
.output_mode(match self.is_verbose() {
591+
true => OutputMode::PrintAll,
592+
false => OutputMode::PrintOutput,
593+
}),
590594
);
591595
if has_local_modifications {
592596
self.run(Command::new("git").args(&["stash", "push"]).current_dir(&absolute_path));

0 commit comments

Comments
 (0)