Fixing scripts to run from both bin/ and /.

This commit is contained in:
Lukas Martini 2011-04-07 19:54:41 +02:00
parent de967c1cd5
commit debbced185
4 changed files with 21 additions and 5 deletions

View file

@ -4,7 +4,11 @@ if [ ! -x /usr/bin/java ]; then
exit 1
fi
cd "../doc/jsdoc-toolkit"
if [ -d "../bin" ]; then
cd "../"
fi
cd "doc/jsdoc-toolkit"
JSRUN="jsrun.jar"
RUNJS="app/run.js"