diff --git a/Utils/gen-card.pl b/Utils/gen-card.pl index 44abc4a54ce..3c2e34b1c2c 100755 --- a/Utils/gen-card.pl +++ b/Utils/gen-card.pl @@ -32,7 +32,7 @@ sub fixCost { my $author; if (-e $authorFile) { - open (DATA, $authorFile); + open (DATA, $authorFile) || die "can't open $authorFile : $!"; $author = ; chomp $author; close(DATA); @@ -40,14 +40,14 @@ if (-e $authorFile) { $author = 'anonymous'; } -open (DATA, $dataFile) || die "can't open $dataFile"; +open (DATA, $dataFile) || die "can't open $dataFile : $!"; while(my $line = ) { my @data = split('\\|', $line); $cards{$data[0]}{$data[1]} = \@data; } close(DATA); -open (DATA, $setsFile) || die "can't open $setsFile"; +open (DATA, $setsFile) || die "can't open $setsFile : $!"; while(my $line = ) { my @data = split('\\|', $line); $sets{$data[0]}= $data[1]; @@ -55,14 +55,14 @@ while(my $line = ) { } close(DATA); -open (DATA, $knownSetsFile) || die "can't open $knownSetsFile"; +open (DATA, $knownSetsFile) || die "can't open $knownSetsFile : $!"; while(my $line = ) { my @data = split('\\|', $line); $knownSets{$data[0]}= $data[1]; } close(DATA); -open (DATA, $keywordsFile) || die "can't open $keywordsFile"; +open (DATA, $keywordsFile) || die "can't open $keywordsFile : $!"; while(my $line = ) { my @data = split('\\|', $line); $keywords{toCamelCase($data[0])}= $data[1];