Revert last change

This commit is contained in:
Bertrand Bellenot 2016-08-25 11:56:06 +02:00 committed by sftnight
parent ba7c310d93
commit 52839d827f

View File

@ -605,7 +605,7 @@ def tarball():
box_draw("Compress binaries into a bzip2 tarball")
tar = tarfile.open(prefix + '.tar.bz2', 'w:bz2')
print('Creating archive: ' + os.path.basename(prefix) + '.tar.bz2')
tar.add(prefix + '.tar.bz2', arcname=os.path.basename(prefix))
tar.add(prefix, arcname=os.path.basename(prefix))
tar.close()
gInCleanup = False