Merge pull request #1259 from lyarwood/launch.sh

launch.sh: Check for a local websockify directory
This commit is contained in:
Samuel Mannehed 2019-07-14 23:31:10 +02:00 committed by GitHub
commit df4b7515a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ if [ -n "${KEY}" ]; then
fi
# try to find websockify (prefer local, try global, then download local)
if [[ -e ${HERE}/websockify ]]; then
if [[ -d ${HERE}/websockify ]]; then
WEBSOCKIFY=${HERE}/websockify/run
if [[ ! -x $WEBSOCKIFY ]]; then