Fix wrong regex check for ':' instead of '=' in getControllerInfo

This commit is contained in:
Georg Schönberger
2021-04-12 12:55:38 +02:00
parent 32075f62ef
commit db1093cd22

View File

@ -244,7 +244,7 @@ sub getControllerInfo{
}
my %foundController_h;
foreach my $line(@output){
if($line =~ /\:/){
if($line =~ /\=/){
my @lineVals = split('=', $line);
$lineVals[0] =~ s/^\s+|\s+$//g;
$lineVals[1] =~ s/^\s+|\s+$//g;