summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/archive-all3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/archive-all b/scripts/archive-all
index 27c124e9a..ee19b1bd9 100755
--- a/scripts/archive-all
+++ b/scripts/archive-all
@@ -49,7 +49,8 @@ if [ -f "$outputfile.tar.gz" ]; then
fi
zip -qr "$outputfile.zip" .
7z a "$outputfile.7z" .
-tar -czf "$outputfile.tar.gz" *
+#tar -czf "$outputfile.tar.gz" *
+tar -cvf - * | gzip -9 - > "$outputfile.tar.gz"
shasum -a 256 "$outputfile.zip"
shasum -a 256 "$outputfile.7z"
shasum -a 256 "$outputfile.tar.gz"