File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -197,16 +197,15 @@ fn find_envs(
197197 }
198198
199199 let summary = stdio_reporter. get_summary ( ) ;
200-
200+
201201 // If verbose, print the paths of discovered environments first
202202 if options. verbose && !summary. environment_paths . is_empty ( ) {
203203 println ! ( "Environment Paths:" ) ;
204204 println ! ( "------------------" ) ;
205- for ( kind, envs) in summary
206- . environment_paths
207- . iter ( )
208- {
209- let kind_str = kind. map ( |v| format ! ( "{v:?}" ) ) . unwrap_or ( "Unknown" . to_string ( ) ) ;
205+ for ( kind, envs) in summary. environment_paths . iter ( ) {
206+ let kind_str = kind
207+ . map ( |v| format ! ( "{v:?}" ) )
208+ . unwrap_or ( "Unknown" . to_string ( ) ) ;
210209 println ! ( "\n {kind_str}:" ) ;
211210 for env in envs {
212211 if let Some ( executable) = & env. executable {
@@ -216,7 +215,7 @@ fn find_envs(
216215 }
217216 println ! ( )
218217 }
219-
218+
220219 if !summary. managers . is_empty ( ) {
221220 println ! ( "Managers:" ) ;
222221 println ! ( "---------" ) ;
You can’t perform that action at this time.
0 commit comments