I'm running Clojure 1.2.1 and trying to integrate with jline

Here's my CLASSPATH:
echo $CLASSPATH
/usr/share/java:/home/cnorton/git_build/clojure:

Clojure invoked with this script.

#!/bin/sh

if [ "x$CLASSPATH" = "x" ] ; then
    extra_classpath=""
else
    extra_classpath=":$CLASSPATH"
fi

while true ; do
    case "$1" in
        -cp | -classpath)
            extra_classpath=":$2"
            shift 2 ;;
        --)
            shift
            break ;;
        *)
            break ;;
    esac
done

exec java -cp  jline-0_9_5.jar:/usr/share/java/clojure.jar:/usr/share/
java/clojure-contrib.jar"$extra_classpath" clojure.main "$@"

When run, I get this exception.
Exception in thread "main" java.lang.NoClassDefFoundError: jline/
ConsoleRunner

What am I doing wrong?
Thank you.
cmn

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to [email protected]
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to