Use git-archive instead of the obsolete git-tar-tree in make_release

This commit is contained in:
Richard P. Curnow 2007-06-27 23:54:43 +01:00
parent b6e40dbde7
commit eb4c9d908c

View file

@ -19,7 +19,7 @@ if (-d "RELEASES/$subdir") {
system ("rm -rf RELEASES/$subdir"); system ("rm -rf RELEASES/$subdir");
} }
system ("git-tar-tree $version RELEASES/${subdir} | tar xf -"); system ("git-archive --format=tar --prefix=RELEASES/${subdir} $version | tar xf -");
die "git-tar-tree failed" if ($? != 0); die "git-tar-tree failed" if ($? != 0);
chdir "RELEASES"; chdir "RELEASES";