topdir should be a real path
This commit is contained in:
parent
7fa561371a
commit
319897424c
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ set -o xtrace
|
||||||
|
|
||||||
# Keep track of the current directory
|
# Keep track of the current directory
|
||||||
TOOLS_DIR=$(cd $(dirname "$0") && pwd)
|
TOOLS_DIR=$(cd $(dirname "$0") && pwd)
|
||||||
TOP_DIR=$TOOLS_DIR/..
|
TOP_DIR=`cd $TOOLS_DIR/..; pwd`
|
||||||
|
|
||||||
# Where to store files and instances
|
# Where to store files and instances
|
||||||
WORK_DIR=${WORK_DIR:-$TOP_DIR/work}
|
WORK_DIR=${WORK_DIR:-$TOP_DIR/work}
|
||||||
|
|
Loading…
Reference in a new issue