]> granicus.if.org Git - libexpat/commitdiff
make-release.sh: Move from gzip to bzip2
authorSebastian Pipping <sebastian@pipping.org>
Sat, 12 Mar 2016 03:04:24 +0000 (04:04 +0100)
committerSebastian Pipping <sebastian@pipping.org>
Sat, 12 Mar 2016 03:04:24 +0000 (04:04 +0100)
expat/make-release.sh

index 3498d4d94ec17b8499dee6967f9fec09c6516fc1..dc5073114df36c4d5f51bf4c1cf425ead266eb0a 100755 (executable)
@@ -67,9 +67,9 @@ echo "----------------------------------------------------------------------"
 echo "Removing (temporary) checkout directory..."
 rm -rf $tmpdir
 
-tarball=$distdir.tar.gz
+tarball=$distdir.tar.bz2
 echo "Constructing $tarball..."
-tar cf - $distdir | gzip -9 > $tarball || exit $?
+tar cf - $distdir | bzip2 -9 > $tarball || exit $?
 rm -r $distdir
 
 echo "Done."