Commit 245dc866 authored by Solly's avatar Solly

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

Follow symbolic links in launch.sh
parents 16b3ef77 2ace90e6
...@@ -22,7 +22,8 @@ usage() { ...@@ -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=""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment