File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -327,7 +327,7 @@ impl App {
327
327
&& utils:: check_file_expect_not_exist (
328
328
Path :: new ( output_file. as_str ( ) ) ,
329
329
format ! (
330
- " The files with a base name of {} already exist. Please specify a different base filename.\n " ,
330
+ " The files with a base name of {} already exist. Please specify a different base filename or add the -C, --clobber option to overwrite .\n " ,
331
331
path. as_os_str( ) . to_str( ) . unwrap( )
332
332
) ,
333
333
)
@@ -341,10 +341,10 @@ impl App {
341
341
for target_path in target_output_path. iter ( ) {
342
342
let mut msg = "" ;
343
343
if target_path. ends_with ( "-successful.csv" ) {
344
- msg = "Successful logon results: "
344
+ msg = "Successful logon results"
345
345
}
346
346
if target_path. ends_with ( "-failed.csv" ) {
347
- msg = "Failed logon results: "
347
+ msg = "Failed logon results"
348
348
}
349
349
output_saved_file ( & Some ( Path :: new ( target_path) . to_path_buf ( ) ) , msg) ;
350
350
}
You can’t perform that action at this time.
0 commit comments