From 284e83eae56f1a3ac86570e7e401a7a835fd9648 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Fri, 27 Apr 2007 23:19:52 +0000
Subject: [PATCH] Update the shell script used to create Java WebStart archives so that it excludes ".svn" directories when copying content from version-controlled directories.

---
 opends/resource/webstart/create-webstart-standalone.sh |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/opends/resource/webstart/create-webstart-standalone.sh b/opends/resource/webstart/create-webstart-standalone.sh
index 81d4f52..cad951e 100755
--- a/opends/resource/webstart/create-webstart-standalone.sh
+++ b/opends/resource/webstart/create-webstart-standalone.sh
@@ -125,6 +125,7 @@
 # in the archive.
 echo "Copying static content into place ..."
 cp -Rp "${SCRIPT_DIR}/images" "${INSTALL_DIR}"
+find "${INSTALL_DIR}/images" -type d -name '.svn' -exec rm -rf {} \;
 
 
 # Copy the appropriate OpenDS library files and make sure they are signed.

--
Gitblit v1.10.0