We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4899346 + 083fbca commit 4c9d524Copy full SHA for 4c9d524
src/usr/bin/rpimonitord
@@ -181,7 +181,7 @@ sub LoadFile
181
while (<FILE>){
182
chomp;
183
/^\s*#|^$/ and next; # Ignore comments
184
- /^include=(.*)/ and -f $1 and push($this->{'daemon'}->{'confFiles'}, $1) and next;
+ /^include=(.*)/ and -f $1 and push(@{$this->{'daemon'}->{'confFiles'}}, $1) and next;
185
my ($key, $value) = /^([^=]*)=(.*)/; # Extract key and value
186
my @leaves=split('\.', $key); # Explode key and construct config hash
187
my $tree=$this;
0 commit comments