Hello All
After some digging around I have found that problem has to do with the grep in
foreach my $new_dir (grep { $_ ne '..' and -d "$current_dir/$_" } @matches) {
in line ca. 180 in Utils.pm
find_files works if this line are changed to
foreach my $new_dir (@matches) {
Any idea's/suggestions ?
Regards
Michael