Commit 0b60ece4 authored by rw's avatar rw

show absolute path to user when aborting

parent 69dc8cbb
......@@ -18,11 +18,12 @@ LICENSE
echo
echo Compile then run the Java test.
testdir=$(dirname $0)
testdir=$(readlink -fn `dirname $0`)
thisdir=$(readlink -fn `pwd`)
if [[ "$testdir" != "." ]]; then
echo error: must be run from inside the ./tests directory
echo you ran it from `pwd`
if [[ "$testdir" != "$thisdir" ]]; then
echo error: must be run from inside the ${testdir} directory
echo you ran it from ${thisdir}
exit 1
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment