File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -225,12 +225,12 @@ impl Cli {
225
225
. long ( "hide-logo" )
226
226
. value_name ( "WHEN" )
227
227
. takes_value ( true )
228
- . possible_values ( & [ "auto" , "never" , " always"] )
228
+ . possible_values ( & [ "auto" , "always" ] )
229
229
. default_value ( "always" )
230
230
. hide_default_value ( true )
231
- . help ( "Specify when to hide the logo (auto, never, *always*)." )
231
+ . help ( "Specify when to hide the logo (auto, *always*)." )
232
232
. long_help (
233
- "Specify when to hide the logo (auto, never, *always*). \n \
233
+ "Specify when to hide the logo (auto, *always*). \n \
234
234
If set to auto, the logo will be hidden if the terminal's width < 95."
235
235
)
236
236
) . get_matches ( ) ;
@@ -251,7 +251,6 @@ impl Cli {
251
251
252
252
let art_off = match matches. value_of ( "hide-logo" ) {
253
253
Some ( "always" ) => true ,
254
- Some ( "never" ) => false ,
255
254
Some ( "auto" ) => {
256
255
if let Some ( ( width, _) ) = term_size:: dimensions_stdout ( ) {
257
256
width < MAX_TERM_WIDTH
You can’t perform that action at this time.
0 commit comments