2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 03:06:37 +00:00

01_FHEMWEB.pm: exception for 98_FhemTestUtils.pm (Forum #119648)

git-svn-id: https://svn.fhem.de/fhem/trunk@23995 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2021-03-18 11:06:57 +00:00
parent 5da24b38f2
commit a1c9651b3c

View File

@ -2163,7 +2163,9 @@ FW_fileList($;$)
my @ret;
return @ret if(!opendir(DH, $dir));
while(my $f = readdir(DH)) {
next if($f !~ m,^$re$, || $f eq "99_Utils.pm");
next if($f !~ m,^$re$, || $f eq "98_FhemTestUtils.pm" ||
$f eq "99_Utils.pm");
push(@ret, $f);
}
closedir(DH);