summaryrefslogtreecommitdiffstats
path: root/deployment/deploy-jars-sign.sh
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-11-24 01:59:51 +0100
committerSven Gothel <[email protected]>2010-11-24 01:59:51 +0100
commita834a22b097edbb577f19c6a088c521809285c8a (patch)
tree9681b10583984c701dc6d8a872d34c04c0a15082 /deployment/deploy-jars-sign.sh
parent60dabf98676b12f5158480346ccc9c1694010f5e (diff)
Fix promote-latest-builds ; Prep repack/sign/pack
Diffstat (limited to 'deployment/deploy-jars-sign.sh')
-rwxr-xr-xdeployment/deploy-jars-sign.sh47
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
-