[JGIT PATCH] Allow jgit to load additional user classes
- Date: Mon, 11 Aug 2008 12:54:42 -0700
- From: "Shawn O. Pearce" <spearce@xxxxxxxxxxx>
- Subject: [JGIT PATCH] Allow jgit to load additional user classes
Users may want to develop their own custom programs (implementations
of TextBuiltin) and add them into the jgit runtime for command line
usage. We now load additional classes from $JGIT_CLASSPATH, if it
was defined when the process started.
To avoid users replacing our own internal commands or classes we
put the user classpath behind our own, ensuring all of our standard
classes and resources are found first.
Signed-off-by: Shawn O. Pearce <spearce@xxxxxxxxxxx>
---
jgit.sh | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/jgit.sh b/jgit.sh
index 121beec..6b9b224 100755
--- a/jgit.sh
+++ b/jgit.sh
@@ -15,6 +15,11 @@ else
java_args=
fi
+if [ -n "$JGIT_CLASSPATH" ]
+then
+ cp="$cp:$JGIT_CLASSPATH"
+fi
+
# Cleanup paths for Cygwin.
#
case "`uname`" in
--
1.5.4.5
--
Shawn.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html