mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
31 lines
1.1 KiB
Bash
Executable File
31 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# rhino discards the path to the current script file, so we must add it back
|
|
SOURCE="$0"
|
|
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
|
|
BASEPATH="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
|
|
|
# for whatever reason, Rhino requires module paths to be valid URIs
|
|
URLPATH="file://"$BASEPATH
|
|
URLPATH=`echo "$URLPATH" | sed -e 's/ /%20/g'`
|
|
|
|
if test $1 = "--debug"
|
|
then
|
|
echo "Running Debug"
|
|
CMD="org.mozilla.javascript.tools.debugger.Main -debug"
|
|
shift
|
|
else
|
|
CMD="org.mozilla.javascript.tools.shell.Main"
|
|
fi
|
|
|
|
#Conditionally execute different command lines depending on whether we're running tests or not
|
|
if test $1 = "-T"
|
|
then
|
|
echo "Running Tests"
|
|
java -classpath "${BASEPATH}/lib/js.jar" ${CMD} -opt -1 -modules "${URLPATH}/node_modules" -modules "${URLPATH}/rhino_modules" -modules "${URLPATH}" "${BASEPATH}/jsdoc.js" $@ --dirname="${BASEPATH}/"
|
|
|
|
else
|
|
# normal mode should be quiet
|
|
java -classpath "${BASEPATH}/lib/js.jar" ${CMD} -modules "${URLPATH}/node_modules" -modules "${URLPATH}/rhino_modules" -modules "${URLPATH}" "${BASEPATH}/jsdoc.js" $@ --dirname="${BASEPATH}/"
|
|
fi
|