Commit 13e49148 authored by Wayne Davison's avatar Wayne Davison

Fixed a problem with extracting the previous release's

generated files (used to create the release diff).
parent 932fcfc1
......@@ -194,9 +194,10 @@ print "<Press Enter to continue> ";
$_ = <STDIN>;
@_ = @extra_files;
map { s#^#a/# } @_;
map { s#^#rsync-$lastversion/# } @_;
$_[0] =~ s/configure\.sh/configure/; # XXX remove soon
system "tar xzf $lasttar_file @_";
rename("rsync-$lastversion", 'a');
rename("a/configure", "a/configure.sh"); # XXX remove soon
system "rsync -a @extra_files rsync-$version/";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment