summaryrefslogtreecommitdiffstats
path: root/make/scripts/deploy-jars-sign.sh
diff options
context:
space:
mode:
Diffstat (limited to 'make/scripts/deploy-jars-sign.sh')
-rwxr-xr-xmake/scripts/deploy-jars-sign.sh47
1 files changed, 0 insertions, 47 deletions
diff --git a/make/scripts/deploy-jars-sign.sh b/make/scripts/deploy-jars-sign.sh
deleted file mode 100755
index 1a4421aa9..000000000
--- a/make/scripts/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
-