change default output mode of BootstrapCommand

Signed-off-by: onur-ozkan <work@onurozkan.dev>
This commit is contained in:
onur-ozkan 2023-10-28 19:36:09 +03:00
parent 7314873326
commit 3bb0c94eb6

View File

@ -54,7 +54,7 @@ impl<'a> From<&'a mut Command> for BootstrapCommand<'a> {
Self { Self {
command, command,
failure_behavior: BehaviorOnFailure::Exit, failure_behavior: BehaviorOnFailure::Exit,
output_mode: OutputMode::SuppressOnSuccess, output_mode: OutputMode::PrintAll,
} }
} }
} }