Skip to content

Commit

Permalink
use older perl
Browse files Browse the repository at this point in the history
  • Loading branch information
szabgab committed Nov 29, 2013
1 parent edc9eb9 commit 0e19450
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/generate.pl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use strict;
use warnings;
use 5.012;
use autodie;
#use 5.012;
#use autodie;

use Template;
use DateTime;
Expand All @@ -21,7 +21,7 @@


foreach my $p (@pages) {
open my $fh, '<', "pages/$p";
open my $fh, '<', "pages/$p" or die $!;
my %params = ( content => '' );
while (my $row = <$fh>) {
#chomp $row;
Expand Down

0 comments on commit 0e19450

Please sign in to comment.