changeset 1244:2ed4e399e1d4

bin (libervia): check `twistd` before `twistd3` to use venv version first
author Goffi <goffi@goffi.org>
date Mon, 20 Apr 2020 17:33:41 +0200
parents 8aff742d0dd0
children 079e8eb6e327
files bin/libervia
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/bin/libervia	Sun Apr 19 22:56:59 2020 +0200
+++ b/bin/libervia	Mon Apr 20 17:33:41 2020 +0200
@@ -4,10 +4,10 @@
 DAEMON=""
 PYTHON="python3"
 
-# for Python 3, "twistd" is named "twistd3" on some distros, so we check for it first
-TWISTD="$(which twistd3 2>/dev/null)"
+TWISTD="$(which twistd 2>/dev/null)"
 if [ $? -ne 0 ]; then
-	TWISTD="$(which twistd 2>/dev/null)"
+	# for Python 3, "twistd" is named "twistd3" on some distros
+	TWISTD="$(which twistd3 2>/dev/null)"
 fi
 if [ $? -ne 0 ]; then
   	printf "Can't find \"twistd\" script, are you sure that Twisted is installed?\n"