topdir should be a real path

This commit is contained in:
Jesse Andrews 2011-10-30 18:56:05 -07:00
parent 7fa561371a
commit 319897424c

View file

@ -17,7 +17,7 @@ set -o xtrace
# Keep track of the current directory
TOOLS_DIR=$(cd $(dirname "$0") && pwd)
TOP_DIR=$TOOLS_DIR/..
TOP_DIR=`cd $TOOLS_DIR/..; pwd`
# Where to store files and instances
WORK_DIR=${WORK_DIR:-$TOP_DIR/work}