aboutsummaryrefslogtreecommitdiffstats
path: root/make/scripts/deploy-jars-repack200.sh
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-11-09 03:20:00 +0100
committerSven Gothel <[email protected]>2010-11-09 03:20:00 +0100
commit8957ecbb7a9fd8e9d70ec246cf557a0183e4d9ee (patch)
tree73d082d93468c092292cd5a402d8b98174756775 /make/scripts/deploy-jars-repack200.sh
parent312b3bd03f7601f9fb9c501aa2b35bd8e05df238 (diff)
Relocated some deployment script to jogamp-scripting repo
Diffstat (limited to 'make/scripts/deploy-jars-repack200.sh')
-rwxr-xr-xmake/scripts/deploy-jars-repack200.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/make/scripts/deploy-jars-repack200.sh b/make/scripts/deploy-jars-repack200.sh
deleted file mode 100755
index 1169d63c3..000000000
--- a/make/scripts/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
-