diff options
author | Sven Gothel <[email protected]> | 2010-11-24 01:59:51 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-24 01:59:51 +0100 |
commit | a834a22b097edbb577f19c6a088c521809285c8a (patch) | |
tree | 9681b10583984c701dc6d8a872d34c04c0a15082 /deployment/deploy-jars-repack200.sh | |
parent | 60dabf98676b12f5158480346ccc9c1694010f5e (diff) |
Fix promote-latest-builds ; Prep repack/sign/pack
Diffstat (limited to 'deployment/deploy-jars-repack200.sh')
-rwxr-xr-x | deployment/deploy-jars-repack200.sh | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/deployment/deploy-jars-repack200.sh b/deployment/deploy-jars-repack200.sh deleted file mode 100755 index 1169d63..0000000 --- a/deployment/deploy-jars-repack200.sh +++ /dev/null @@ -1,30 +0,0 @@ -#! /bin/sh - -wsdir=$1 -shift - -if [ -z "$wsdir" ] ; then - echo usage $0 webstartdir - exit 1 -fi - -if [ ! -e $wsdir ] ; then - echo $wsdir does not exist - exit 1 -fi - -THISDIR=`pwd` - -cd $wsdir - -rm -rf orig-jars -mkdir -p orig-jars - -for i in *.jar ; do - cp -a $i orig-jars - echo pack200 --repack $i - pack200 --repack $i -done - -cd $THISDIR - |