2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00

commandref_join.pl: Make sure it works even if there is no configDB.pm

git-svn-id: https://svn.fhem.de/fhem/trunk@8061 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2015-02-21 21:10:02 +00:00
parent 809596d594
commit 040b31414e

View File

@ -21,7 +21,7 @@ foreach my $modDir (@modDir) {
$mods{$l} = "$modDir/$of";
}
}
$mods{configDB} = "configDB.pm";
$mods{configDB} = "configDB.pm" if(-f "configDb.pm");
my @lang = ("EN", "DE");