Merge pull request #475 from kanaka/bug/follow-symlinks-for-here
Follow symbolic links in launch.sh
This commit is contained in:
commit
245dc8669b
|
@ -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=""
|
||||||
|
|
Loading…
Reference in New Issue