ignore .git directorys
[grml.org.git] / gen_website
old mode 100644 (file)
new mode 100755 (executable)
index 2744397..e095187
@@ -1,37 +1,55 @@
 #!/usr/bin/perl
 
-use strict; 
-use warnings; 
+use strict;
+use warnings;
 
 use Template;
 use File::Find::Rule;
 use File::Path qw(make_path);
 use File::Basename qw (fileparse);
 use File::Copy::Recursive qw(fcopy);
+use File::Temp qw (tempdir);
 
 my $out_dir = "out/";
 
 #find all files
 
-my @files = File::Find::Rule->file()
-                           ->in('.');
+#rule to match git directorys
+my $git = File::Find::Rule->directory
+                          ->name(".git")
+                          ->prune
+                          ->discard;
 
+#matches all files
+my $file_rule = File::Find::Rule->file();
+
+#combine both
+my @files = File::Find::Rule->or( $git, $file_rule )
+                            ->in('.');
 
 #initialize template toolkit
 
 my $template = Template->new;
 
+if (! -d $out_dir) {
+       make_path($out_dir) or die "Could not create outdir $out_dir: $!";
+}
+
 foreach my $file (@files) {
        next if $file =~ /^$out_dir/;
        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") or die "$!";
+        make_path("$out_dir/$path") unless -d "$out_dir/$path";
+               open (my $fh, '>', "$out_dir/$path/$name")
+                       or die "Could not write to $file: $!";
                print $fh $output;
                close($fh);
        } else {
-               fcopy ($file, "$out_dir/$file");
+               fcopy ($file, "$out_dir/$file") or die "Could not copy $file to $out_dir/$file: $!";
        }
 }