From 5273ae10759786965166abc63c42d24af8bb306a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89loi=20Rivard?= Date: Wed, 27 Oct 2021 20:55:04 +0200 Subject: [PATCH] demo: python binary detection fix --- demo/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/run.sh b/demo/run.sh index cb8b7e13..ee849ae4 100755 --- a/demo/run.sh +++ b/demo/run.sh @@ -12,7 +12,7 @@ function usage { } function run { - if ! type python > /dev/null 2>&1; then + if ! type python > /dev/null 2>&1 && ! type python3 > /dev/null 2>&1; then echo "Cannot start the LDAP server. Please install python on your system." return 1 fi