Raspberry Pi builds should upload as .tar.xz instead of .tar.bz2.

Makes the archive about 40-50% smaller!

--HG--
extra : rebase_source : adac7393b54fb8c05cb868858c968da87f3d7199
This commit is contained in:
Ryan C. Gordon 2014-03-28 09:59:32 -04:00
parent c36617ceb6
commit ee2b15aebc

View file

@ -12,7 +12,7 @@
TARBALL="$1"
if [ -z $1 ]; then
TARBALL=sdl-raspberrypi.tar.bz2
TARBALL=sdl-raspberrypi.tar.xz
fi
OSTYPE=`uname -s`
@ -51,7 +51,7 @@ mkdir -p ./usr
mv ./rpi-sdl2-installed ./usr/local
popd
tar -cjvvf $TARBALL -C $BUILDBOTDIR usr
tar -cJvvf $TARBALL -C $BUILDBOTDIR usr
rm -rf $BUILDBOTDIR
set +x