Merge pull request #1539 from egypcio/compress-tgz

Actually compress the tarball, using tar with -z
This commit is contained in:
Micah Lee 2022-03-06 10:54:30 -08:00 committed by GitHub
commit 4e6d31ed46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 ../..