summaryrefslogtreecommitdiffstats
path: root/deployment/deploy-jar-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-jar-sign.sh
parent60dabf98676b12f5158480346ccc9c1694010f5e (diff)
Fix promote-latest-builds ; Prep repack/sign/pack
Diffstat (limited to 'deployment/deploy-jar-sign.sh')
-rwxr-xr-xdeployment/deploy-jar-sign.sh36
1 files changed, 0 insertions, 36 deletions
diff --git a/deployment/deploy-jar-sign.sh b/deployment/deploy-jar-sign.sh
deleted file mode 100755
index d6291c4..0000000
--- a/deployment/deploy-jar-sign.sh
+++ /dev/null
@@ -1,36 +0,0 @@
-#! /bin/sh
-
-jarfile=$1
-shift
-
-keystore=$1
-shift
-
-storepass=$1
-shift
-
-signarg=$1
-shift
-
-if [ -z "$jarfile" -o -z "$keystore" -o -z "$storepass" ] ; then
- echo "usage $0 jarfile pkcs12-keystore storepass [signarg]"
- exit 1
-fi
-
-if [ ! -e $jarfile ] ; then
- echo $jarfile does not exist
- exit 1
-fi
-
-if [ ! -e $keystore ] ; then
- echo $keystore does not exist
- exit 1
-fi
-
-THISDIR=`pwd`
-
-echo jarsigner -storetype pkcs12 -keystore $keystore $jarfile \"$signarg\"
-jarsigner -storetype pkcs12 -keystore $THISDIR/$keystore -storepass $storepass $jarfile "$signarg"
-
-cd $THISDIR
-