aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2022-03-06 10:54:30 -0800
committerGitHub <noreply@github.com>2022-03-06 10:54:30 -0800
commit4e6d31ed46d870658a9caa50a2b13f1eda49042b (patch)
treeea925f7ca170f7f092e8a47d253e3ec271fecf39
parent2588fb02625b510d18d146540910aeb40f630b72 (diff)
parent544bdca878bbe1fb366ecfb8e0e2717e92e004bb (diff)
downloadonionshare-4e6d31ed46d870658a9caa50a2b13f1eda49042b.tar.gz
onionshare-4e6d31ed46d870658a9caa50a2b13f1eda49042b.zip
Merge pull request #1539 from egypcio/compress-tgz
Actually compress the tarball, using tar with -z
-rwxr-xr-xbuild-source.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-source.sh b/build-source.sh
index f3d19f15..7ca9e462 100755
--- a/build-source.sh
+++ b/build-source.sh
@@ -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 ../..