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-sign.sh | |
parent | 60dabf98676b12f5158480346ccc9c1694010f5e (diff) |
Fix promote-latest-builds ; Prep repack/sign/pack
Diffstat (limited to 'deployment/deploy-jars-sign.sh')
-rwxr-xr-x | deployment/deploy-jars-sign.sh | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/deployment/deploy-jars-sign.sh b/deployment/deploy-jars-sign.sh deleted file mode 100755 index 1a4421a..0000000 --- a/deployment/deploy-jars-sign.sh +++ /dev/null @@ -1,47 +0,0 @@ -#! /bin/sh - -wsdir=$1 -shift - -keystore=$1 -shift - -storepass=$1 -shift - -signarg=$1 -shift - -if [ -z "$wsdir" -o -z "$keystore" -o -z "$storepass" ] ; then - echo "usage $0 webstartdir pkcs12-keystore storepass [signarg]" - exit 1 -fi - -if [ ! -e $wsdir ] ; then - echo $wsdir does not exist - exit 1 -fi - -if [ ! -e $keystore ] ; then - echo $keystore does not exist - exit 1 -fi - -THISDIR=`pwd` - -cd $wsdir - -rm -rf demo-jars -mkdir -p demo-jars -mv jogl.test.jar jogl-demos*jar demo-jars/ - -for i in *.jar ; do - echo jarsigner -storetype pkcs12 -keystore $keystore $i \"$signarg\" - jarsigner -storetype pkcs12 -keystore $THISDIR/$keystore -storepass $storepass $i "$signarg" -done - -mv demo-jars/* . -rm -rf demo-jars - -cd $THISDIR - |