Skip to content

Commit

Permalink
Use directory below tempdir
Browse files Browse the repository at this point in the history
  • Loading branch information
formorer committed Jan 6, 2012
1 parent c7d73e8 commit 96ce5a1
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions gen_website
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ my @files = File::Find::Rule->or( $git, $file_rule )

#create a tempdir
my $tempdir = tempdir( CLEANUP => 1 );
make_path("$tempdir/out") or die "Could not create $tempdir/out: $!";


#initialize template toolkit

Expand All @@ -43,13 +45,13 @@ 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: $!";
}
}

Expand All @@ -58,8 +60,8 @@ if (-d $out_dir) {
dirmove ($out_dir, $out_dir . ".bak")
or die "Could not move $out_dir to $out_dir.bak: $!";
}
if (! dirmove ($tempdir, "$out_dir")) {
warn "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);
Expand Down

0 comments on commit 96ce5a1

Please sign in to comment.