summaryrefslogtreecommitdiffstats
path: root/deployment
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-12-01 16:13:54 +0100
committerSven Gothel <[email protected]>2010-12-01 16:13:54 +0100
commit9479088a789ad5e36c63b05bef5c208f66b75def (patch)
tree4a9cdbec9feb1348f1386ed06b97a5cb39e12009 /deployment
parent799246021b6b31fd893883ac214ff82902aae3b4 (diff)
Add gzip compression
Diffstat (limited to 'deployment')
-rwxr-xr-xdeployment/funcs_jars_pack_sign.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/deployment/funcs_jars_pack_sign.sh b/deployment/funcs_jars_pack_sign.sh
index ec99b68..b4ea813 100755
--- a/deployment/funcs_jars_pack_sign.sh
+++ b/deployment/funcs_jars_pack_sign.sh
@@ -57,6 +57,8 @@ mkdir -p DLLS
mv *natives*.jar DLLS/
for i in *.jar ; do
+ echo gzip -9 $i to $i.gz
+ gzip -9 -c $1 > $1.gz
echo pack200 -E9 $i.pack.gz $i
pack200 -E9 $i.pack.gz $i
done