summaryrefslogtreecommitdiff
path: root/tools/linux_packaging/build
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-07-29 18:56:07 +0200
committerRobin Gareus <robin@gareus.org>2016-07-29 18:56:07 +0200
commit6fa25a1258284f540c0060dad7c9fb73e7100e3e (patch)
tree90197fe4fd4044444167d04495cdc308eb3b87d0 /tools/linux_packaging/build
parentd0126be806c862b0a622075f2adc035b870ac662 (diff)
Don't compress linux bundle, compress installer (with xz)
This halves the installer size from about 60MB to 29MB.
Diffstat (limited to 'tools/linux_packaging/build')
-rwxr-xr-xtools/linux_packaging/build4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index 34a16f9513..935f712206 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -741,8 +741,8 @@ fi
echo "Building tarball ..."
-rm -f $APPDIR.tar.bz2
-tar -cjf $APPDIR.tar.bz2 $APPDIR
+rm -f $APPDIR.tar
+tar -cf $APPDIR.tar $APPDIR
echo "Calculating bundle size"
du -sb $APPDIR/ | awk '{print $1}' > $APPDIR.size