summaryrefslogtreecommitdiff
path: root/build-scripts/raspberrypi-buildbot.sh
diff options
context:
space:
mode:
authorRyan C. Gordon <icculus@icculus.org>2014-03-28 09:59:32 -0400
committerRyan C. Gordon <icculus@icculus.org>2014-03-28 09:59:32 -0400
commit3767763e7350ba0a5df2944789cce38f6a0c214b (patch)
treefcf1334b5f65784f4f2bb666f10f97364764189a /build-scripts/raspberrypi-buildbot.sh
parentdea5fdd8697fb0a3079ef6617ffc47ac95f6bb49 (diff)
downloadsdl-3767763e7350ba0a5df2944789cce38f6a0c214b.tar.gz
Raspberry Pi builds should upload as .tar.xz instead of .tar.bz2.
Makes the archive about 40-50% smaller!
Diffstat (limited to 'build-scripts/raspberrypi-buildbot.sh')
-rwxr-xr-xbuild-scripts/raspberrypi-buildbot.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-scripts/raspberrypi-buildbot.sh b/build-scripts/raspberrypi-buildbot.sh
index db258347a..639a3a4de 100755
--- a/build-scripts/raspberrypi-buildbot.sh
+++ b/build-scripts/raspberrypi-buildbot.sh
@@ -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