Use git-archive instead of the obsolete git-tar-tree in make_release
This commit is contained in:
parent
b6e40dbde7
commit
eb4c9d908c
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ if (-d "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);
|
||||
|
||||
chdir "RELEASES";
|
||||
|
|
Loading…
Reference in a new issue