blob: a660392e776e5f90b5e63e72c3204a8de9e816e9 (
plain)
1
2
3
4
5
6
7
8
9
|
if [ -z $QPID_HOME ] ; then
echo "QPID_HOME must be set"
exit
fi
CP=$QPID_HOME/lib/qpid-incubating.jar:../target/classes
if [ `uname -o` == "Cygwin" ] ; then
CP=`cygpath --path --windows $CP`
fi
|