Raspberry Pi builds should upload as .tar.xz instead of .tar.bz2.
Makes the archive about 40-50% smaller!main
parent
17a8d2934d
commit
6123f15e77
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
TARBALL="$1"
|
TARBALL="$1"
|
||||||
if [ -z $1 ]; then
|
if [ -z $1 ]; then
|
||||||
TARBALL=sdl-raspberrypi.tar.bz2
|
TARBALL=sdl-raspberrypi.tar.xz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
OSTYPE=`uname -s`
|
OSTYPE=`uname -s`
|
||||||
|
@ -51,7 +51,7 @@ mkdir -p ./usr
|
||||||
mv ./rpi-sdl2-installed ./usr/local
|
mv ./rpi-sdl2-installed ./usr/local
|
||||||
|
|
||||||
popd
|
popd
|
||||||
tar -cjvvf $TARBALL -C $BUILDBOTDIR usr
|
tar -cJvvf $TARBALL -C $BUILDBOTDIR usr
|
||||||
rm -rf $BUILDBOTDIR
|
rm -rf $BUILDBOTDIR
|
||||||
|
|
||||||
set +x
|
set +x
|
||||||
|
|
Loading…
Reference in New Issue