Browse code

topdir should be a real path

Jesse Andrews authored on 2011/10/31 10:56:05
Showing 1 changed files
... ...
@@ -17,7 +17,7 @@ set -o xtrace
17 17
 
18 18
 # Keep track of the current directory
19 19
 TOOLS_DIR=$(cd $(dirname "$0") && pwd)
20
-TOP_DIR=$TOOLS_DIR/..
20
+TOP_DIR=`cd $TOOLS_DIR/..; pwd`
21 21
 
22 22
 # Where to store files and instances
23 23
 WORK_DIR=${WORK_DIR:-$TOP_DIR/work}