Skip to content

Commit

Permalink
Another minor improvement to findconfigvars.pl
Browse files Browse the repository at this point in the history
  • Loading branch information
addrummond committed Jul 23, 2010
1 parent 770d4e6 commit 1103f48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion findconfigvars.pl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
open(my $f, $_);
my $line = 1;
for my $l (<$f>) {
if ($l =~ /IbexFarm->config->{([^}]+)}/) { push @confs, { varname => "$1", filename => $_, line => $line } ; }
if ($l =~ /IbexFarm->config->{([^}]+)}/) { push @confs, { varname => "$1", filename => $File::Find::name, line => $line } ; }
++$line;
}
}
Expand Down

0 comments on commit 1103f48

Please sign in to comment.