File tree 1 file changed +12
-12
lines changed
1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -258,12 +258,17 @@ impl Config {
258
258
. map_err ( |e| e. to_string ( ) )
259
259
} )
260
260
)
261
- . arg (
262
- Arg :: with_name ( "show-email" )
263
- . short ( "E" )
264
- . long ( "show-email" )
265
- . help ( "show the email address of each author." )
266
- )
261
+ . arg (
262
+ Arg :: with_name ( "email" )
263
+ . short ( "E" )
264
+ . long ( "email" )
265
+ . help ( "show the email address of each author." )
266
+ )
267
+ . arg (
268
+ Arg :: with_name ( "hidden" )
269
+ . long ( "hidden" )
270
+ . help ( "Count hidden files and directories." )
271
+ )
267
272
. arg (
268
273
Arg :: with_name ( "exclude" )
269
274
. short ( "e" )
@@ -273,11 +278,6 @@ impl Config {
273
278
. takes_value ( true )
274
279
. help ( "Ignore all files & directories matching EXCLUDE." ) ,
275
280
)
276
- . arg (
277
- Arg :: with_name ( "hidden" )
278
- . long ( "hidden" )
279
- . help ( "Count hidden files and directories." )
280
- )
281
281
. get_matches ( ) ;
282
282
283
283
let true_color = match matches. value_of ( "true-color" ) {
@@ -292,7 +292,7 @@ impl Config {
292
292
let print_languages = matches. is_present ( "languages" ) ;
293
293
let print_package_managers = matches. is_present ( "package-managers" ) ;
294
294
let iso_time = matches. is_present ( "isotime" ) ;
295
- let show_email = matches. is_present ( "show- email" ) ;
295
+ let show_email = matches. is_present ( "email" ) ;
296
296
let include_hidden = matches. is_present ( "hidden" ) ;
297
297
298
298
let output =
You can’t perform that action at this time.
0 commit comments