Skip to content

Commit

Permalink
Raspberry Pi builds should upload as .tar.xz instead of .tar.bz2.
Browse files Browse the repository at this point in the history
Makes the archive about 40-50% smaller!
  • Loading branch information
icculus committed Mar 28, 2014
1 parent 17a8d29 commit 6123f15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-scripts/raspberrypi-buildbot.sh
Expand Up @@ -12,7 +12,7 @@

TARBALL="$1"
if [ -z $1 ]; then
TARBALL=sdl-raspberrypi.tar.bz2
TARBALL=sdl-raspberrypi.tar.xz
fi

OSTYPE=`uname -s`
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 6123f15

Please sign in to comment.