Skip to content

Commit

Permalink
Allow the extra_addresses file to contain comments.
Browse files Browse the repository at this point in the history
Add some comments to the extra_addresses file.
Tidy e-mail addresses for Steve and Rod in the extra_addresses file.
  • Loading branch information
iay committed Jul 4, 2011
1 parent 6481fb7 commit 171df01
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build/addresses.pl
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,13 @@
#
# Load extra addresses.
#
# One extra address per line. Blank lines and lines starting with '#' are
# ignored.
#
open(EXTRAS, "extra_addresses.txt") || die "could not open extra addresses file";
while (<EXTRAS>) {
chomp; # remove \n
next if /^#/;
$extras{$_} = 1 unless $_ eq '';
}
close EXTRAS;
Expand Down

0 comments on commit 171df01

Please sign in to comment.