File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed
coffee_cmd/src/coffee_term Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -114,18 +114,15 @@ pub fn show_nurse_verify(nurse_verify: &ChainOfResponsibilityStatus) -> Result<(
114
114
}
115
115
}
116
116
Defect :: CoffeeGlobalRepoCleanup ( networks) => {
117
- let defect = format ! (
118
- "Global repository migration completed for the networks: {}" ,
119
- networks
120
- . iter( )
121
- . map( |( network, _) | format!( "{network} " ) )
122
- . collect:: <String >( )
123
- . trim_end( )
124
- ) ;
117
+ let defect = "Network specific repository missing" ;
118
+ let networks = networks
119
+ . iter ( )
120
+ . map ( |( network, _) | network. clone ( ) )
121
+ . collect :: < Vec < String > > ( ) ;
125
122
table. push ( [
126
123
term:: format:: positive ( "●" ) . into ( ) ,
127
124
term:: format:: bold ( defect. to_owned ( ) ) ,
128
- term:: format:: highlight ( "_" . to_owned ( ) ) ,
125
+ term:: format:: highlight ( networks . join ( ", " ) ) ,
129
126
] ) ;
130
127
}
131
128
}
You can’t perform that action at this time.
0 commit comments