Skip to content

Commit

Permalink
added you debug script and jars
Browse files Browse the repository at this point in the history
  • Loading branch information
jetztgradnet committed Apr 25, 2012
1 parent 2a9ec91 commit 5efc8eb
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 0 deletions.
Binary file not shown.
Binary file added youdebug-cli/lib/args4j-2.0.16.jar
Binary file not shown.
Binary file added youdebug-cli/lib/groovy-all-1.8.6.jar
Binary file not shown.
Binary file added youdebug-cli/lib/youdebug-1.3.jar
Binary file not shown.
19 changes: 19 additions & 0 deletions youdebug-cli/youdebug
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/sh

BASEDIR=`dirname $0`

LIBDIRS="$BASEDIR/lib"
CLASSPATH=
MAIN="org.kohsuke.youdebug.YouDebug"

for dir in $LIBDIRS; do
for jar in $dir/*.jar; do
if [ -n "$CLASSPATH" ]; then
CLASSPATH="$CLASSPATH:$jar"
else
CLASSPATH="$jar"
fi
done
done

java $JAVA_OPTS -cp $CLASSPATH $MAIN "$@"

0 comments on commit 5efc8eb

Please sign in to comment.