use cd, dirname, and pwd to determine path instead of readlink (Mac fix)
This commit is contained in:
parent
a22a3cc0ea
commit
b992f7c7dd
|
@ -20,7 +20,7 @@ usage() {
|
||||||
}
|
}
|
||||||
|
|
||||||
NAME="$(basename $0)"
|
NAME="$(basename $0)"
|
||||||
HERE=$(readlink -f $(dirname $0))
|
HERE="$(cd "$(dirname "$0")" && pwd)"
|
||||||
WEB_PORT="6080"
|
WEB_PORT="6080"
|
||||||
PROXY_PORT="6081"
|
PROXY_PORT="6081"
|
||||||
VNC_DEST="localhost:5900"
|
VNC_DEST="localhost:5900"
|
||||||
|
|
Loading…
Reference in New Issue