From: Alexander Wirt Date: Thu, 5 Jan 2012 16:38:39 +0000 (+0100) Subject: Don't hardcode filename extension X-Git-Url: http://git.grml.org/?p=grml.org.git;a=commitdiff_plain;h=fad92c355573717c9fd012dc4f9473698801959a Don't hardcode filename extension --- diff --git a/gen_website b/gen_website index 2e17ffa..4345f19 100644 --- a/gen_website +++ b/gen_website @@ -1,7 +1,7 @@ #!/usr/bin/perl -use strict; -use warnings; +use strict; +use warnings; use Template; use File::Find::Rule; @@ -30,11 +30,11 @@ foreach my $file (@files) { next if $file =~ /$0$/; if ($file =~ /\.tt2$/) { my $output; - $template->process($file, undef, \$output) + $template->process($file, undef, \$output) || die "Could not process file \"$file\": $!"; my ($name,$path,$suffix) = fileparse($file,qw (.tt2)); - open (my $fh, '>', "$out_dir/$path/$name.html") + open (my $fh, '>', "$out_dir/$path/$name") or die "Could not write to $file: $!"; print $fh $output; close($fh); diff --git a/index.tt2 b/index.html.tt2 similarity index 100% rename from index.tt2 rename to index.html.tt2