From a64b3f4783ca9fc2def748d51c2c09a6210e158e 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.
---
opendj-sdk/opends/resource/webstart/create-webstart-standalone.sh | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/opendj-sdk/opends/resource/webstart/create-webstart-standalone.sh b/opendj-sdk/opends/resource/webstart/create-webstart-standalone.sh
index 81d4f52..cad951e 100755
--- a/opendj-sdk/opends/resource/webstart/create-webstart-standalone.sh
+++ b/opendj-sdk/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