From 8957ecbb7a9fd8e9d70ec246cf557a0183e4d9ee Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Tue, 9 Nov 2010 03:20:00 +0100 Subject: Relocated some deployment script to jogamp-scripting repo --- make/scripts/deploy-jars-repack200.sh | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100755 make/scripts/deploy-jars-repack200.sh (limited to 'make/scripts/deploy-jars-repack200.sh') 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 - -- cgit v1.2.3