Update launch.sh

Just a correction of port in use test algoritm.
This way we will not have problems when using port X and having some other service using zyX or any *X port
This commit is contained in:
nunojusto 2016-08-16 22:10:14 +01:00 committed by GitHub
parent da82b3426c
commit 83d3e02fd9
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ done
which netstat >/dev/null 2>&1 \ which netstat >/dev/null 2>&1 \
|| die "Must have netstat installed" || die "Must have netstat installed"
netstat -ltn | grep -qs "${PORT} .*LISTEN" \ netstat -ltn | grep -qs ":${PORT} .*LISTEN" \
&& die "Port ${PORT} in use. Try --listen PORT" && die "Port ${PORT} in use. Try --listen PORT"
trap "cleanup" TERM QUIT INT EXIT trap "cleanup" TERM QUIT INT EXIT