X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=gen_website;fp=gen_website;h=7069102b25efd45b44932737199fb710f159053c;hb=0fa97a7419ce184592c20e488530dde80794f89d;hp=1862584422cf32b8e90a3ebc5643fb0ff0089ec3;hpb=416c419ece633c57379e8ba04de3d5392fab2729;p=grml.org.git diff --git a/gen_website b/gen_website index 1862584..7069102 100755 --- a/gen_website +++ b/gen_website @@ -5,12 +5,12 @@ use warnings; use Template; use File::Find::Rule; -use File::Path qw(make_path); +use File::Path qw(make_path remove_tree); use File::Basename qw (fileparse dirname); use File::Copy::Recursive qw(fcopy dirmove); use File::Temp qw (tempdir); -my $out_dir = "out/"; +my $out_dir = shift || "out/"; #find all files @@ -28,7 +28,9 @@ my @files = File::Find::Rule->or( $git, $file_rule ) ->in('.'); #create a tempdir -my $tempdir = tempdir( CLEANUP => 0 ); +my $tempdir = tempdir( CLEANUP => 1 ); +make_path("$tempdir/out") or die "Could not create $tempdir/out: $!"; + #initialize template toolkit @@ -43,20 +45,26 @@ foreach my $file (@files) { || die "Could not process file \"$file\": $!"; my ($name,$path,$suffix) = fileparse($file,qw (.tt2)); - make_path("$tempdir/$path") unless -d "$tempdir/$path"; - open (my $fh, '>', "$tempdir/$path/$name") + make_path("$tempdir/out/$path") unless -d "$tempdir/out/$path"; + open (my $fh, '>', "$tempdir/out/$path/$name") or die "Could not write to $file: $!"; print $fh $output; close($fh); } else { - fcopy ($file, "$tempdir/$file") or die "Could not copy $file to $tempdir/$file: $!"; + fcopy ($file, "$tempdir/out/$file") or die "Could not copy $file to $tempdir/out/$file: $!"; } } $out_dir =~ s/\/$//; if (-d $out_dir) { - mv ($out_dir, dirname($out_dir) . ".bak") + dirmove ($out_dir, $out_dir . ".bak") or die "Could not move $out_dir to $out_dir.bak: $!"; } -dirmove ($tempdir, "$out_dir") - or die "Could not move $tempdir to $out_dir: $!"; +if (! dirmove ("$tempdir/out", "$out_dir")) { + warn "Could not move $tempdir/out to $out_dir: $!"; + warn "Rollback"; + remove_tree($out_dir); + dirmove ($out_dir . ".bak", $out_dir); +} else { + remove_tree($out_dir . ".bak"); +}