mirror of
https://github.com/onionshare/onionshare.git
synced 2025-06-28 00:07:13 -04:00
Actually compress the tarball, using tar with -z
From tar's manpage we have: -z, -j, -J, --lzma Compress archive with gzip/bzip2/xz/lzma By doing that we shrink the size of OnionShare's tarball from its 12M to around 6.3M
This commit is contained in:
parent
c6e0aafc1d
commit
544bdca878
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ git checkout $TAG
|
||||||
# Delete .git, compress, and PGP sign
|
# Delete .git, compress, and PGP sign
|
||||||
cd ..
|
cd ..
|
||||||
rm -rf onionshare/.git
|
rm -rf onionshare/.git
|
||||||
tar -cf onionshare-$VERSION.tar.gz onionshare/
|
tar -czf onionshare-$VERSION.tar.gz onionshare/
|
||||||
|
|
||||||
# Move source package to dist
|
# Move source package to dist
|
||||||
cd ../..
|
cd ../..
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue