mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -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
@ -65,7 +65,7 @@ git checkout $TAG
|
||||
# Delete .git, compress, and PGP sign
|
||||
cd ..
|
||||
rm -rf onionshare/.git
|
||||
tar -cf onionshare-$VERSION.tar.gz onionshare/
|
||||
tar -czf onionshare-$VERSION.tar.gz onionshare/
|
||||
|
||||
# Move source package to dist
|
||||
cd ../..
|
||||
|
Loading…
Reference in New Issue
Block a user