From 079fd792231bc3ea5e8d34879812a045b6097de0 Mon Sep 17 00:00:00 2001 From: Bubbl3H3d <31154539+Bubbl3H3d@users.noreply.github.com> Date: Tue, 14 Nov 2017 02:44:08 -0500 Subject: [PATCH] Fixed --cert Argument Typo in launch.sh Fixed a transposition error on line 145 affecting the --cert argument. --- utils/launch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/launch.sh b/utils/launch.sh index 9e650e42..5e2a712d 100755 --- a/utils/launch.sh +++ b/utils/launch.sh @@ -142,7 +142,7 @@ fi echo "Starting webserver and WebSockets proxy on port ${PORT}" #${HERE}/websockify --web ${WEB} ${CERT:+--cert ${CERT}} ${PORT} ${VNC_DEST} & -${WEBSOCKIFY} ${SSLONLY} --web ${WEB} ${CERT:+--cert ${CERT}} ${PORT} ${VNC_DEST} & +${WEBSOCKIFY} ${SSLONLY} --web ${WEB} --cert ${CERT} ${PORT} ${VNC_DEST} & proxy_pid="$!" sleep 1 if ! ps -p ${proxy_pid} >/dev/null; then