Merge pull request #475 from kanaka/bug/follow-symlinks-for-here

Follow symbolic links in launch.sh
This commit is contained in:
Solly 2015-03-27 11:54:39 -04:00
commit 245dc8669b
1 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,8 @@ usage() {
} }
NAME="$(basename $0)" NAME="$(basename $0)"
HERE="$(cd "$(dirname "$0")" && pwd)" REAL_NAME="$(readlink -f $0)"
HERE="$(cd "$(dirname "$REAL_NAME")" && pwd)"
PORT="6080" PORT="6080"
VNC_DEST="localhost:5900" VNC_DEST="localhost:5900"
CERT="" CERT=""