File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -710,7 +710,7 @@ sub gen_info($)
710
710
{
711
711
info(" Scanning $directory for $ext files ...\n " );
712
712
713
- @file_list = ` find "$directory " $maxdepth $follow -name \\ *$ext -type f -o -type l 2>/dev/null` ;
713
+ @file_list = ` find "$directory " $maxdepth $follow -name \\ *$ext -type f -o -name \\ * $ext - type l 2>/dev/null` ;
714
714
chomp (@file_list );
715
715
if (!@file_list ) {
716
716
warn (" WARNING: no $ext files found in $directory - " .
Original file line number Diff line number Diff line change @@ -599,7 +599,7 @@ sub userspace_reset()
599
599
{
600
600
info(" Deleting all .da files in $current_dir " .
601
601
($no_recursion ?" \n " :" and subdirectories\n " ));
602
- @file_list = ` find "$current_dir " $maxdepth $follow -name \\ *\\ .da -o -name \\ *\\ .gcda -type f 2>/dev/null` ;
602
+ @file_list = ` find "$current_dir " $maxdepth $follow -name \\ *\\ .da -type f - o -name \\ *\\ .gcda -type f 2>/dev/null` ;
603
603
chomp (@file_list );
604
604
foreach (@file_list )
605
605
{
You can’t perform that action at this time.
0 commit comments