diff options
author | Sven Gothel <[email protected]> | 2010-12-04 00:21:13 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-12-04 00:21:13 +0100 |
commit | 5b11a96a267de29e8bc8371d9cc0fea62fca824a (patch) | |
tree | bd61fecaa3e7a05422d5775ec91469c203301b5b /deployment | |
parent | f6063f904406cd5236e8f7e50543569ff14fe6d4 (diff) |
Fix jar_pack function script: gzip used wrong local var; Add verbosity
Diffstat (limited to 'deployment')
-rwxr-xr-x | deployment/funcs_jars_pack_sign.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/deployment/funcs_jars_pack_sign.sh b/deployment/funcs_jars_pack_sign.sh index 8703785..8e44a5d 100755 --- a/deployment/funcs_jars_pack_sign.sh +++ b/deployment/funcs_jars_pack_sign.sh @@ -27,7 +27,7 @@ cd $wsdir for i in *.jar ; do echo pack200 --repack $i - pack200 --repack $i + pack200 -v --repack $i done cd $THISDIR @@ -58,9 +58,9 @@ mv *natives*.jar DLLS/ for i in *.jar ; do echo gzip -9 $i to $i.gz - gzip -9 -c $1 > $1.gz + gzip -9 -cv $i > $i.gz echo pack200 -E9 $i.pack.gz $i - pack200 -E9 $i.pack.gz $i + pack200 -v -E9 $i.pack.gz $i done mv DLLS/* . |