#!/bin/sh | |
## Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0 | |
if [ "$ARQROOT" = "" ]; then | |
echo "ARQROOT not set" 1>&2 | |
exit 1 | |
fi | |
if [ -e "$ARQROOT/arq.classpath" ]; then | |
cat "$ARQROOT/arq.classpath" | |
elif [ -e "$ARQROOT/.classpath" ]; then | |
# Development area | |
exec "$ARQROOT/bin/make_classpath_mvn" "$ARQROOT" | tee "$ARQROOT/arq.classpath" | |
else | |
exec "$ARQROOT/bin/make_classpath" "$ARQROOT" | tee "$ARQROOT/arq.classpth" | |
fi |