From: Mark Andrews Date: Wed, 16 Dec 2020 02:50:57 +0000 (+1100) Subject: PYTHON may be null X-Git-Tag: v9.17.9~20^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09f00ad5dd2ad561da2cd8c7b0b428d80c42a95d;p=thirdparty%2Fbind9.git PYTHON may be null When Python is not present, PYTHON=$(command -v "@PYTHON@") will exit the script with 1, prevent that by adding "|| true". --- diff --git a/bin/tests/system/conf.sh.in b/bin/tests/system/conf.sh.in index 48442c405c7..74b0ebbf1fb 100644 --- a/bin/tests/system/conf.sh.in +++ b/bin/tests/system/conf.sh.in @@ -124,7 +124,7 @@ PERL=$(command -v "@PERL@") # Windows process management leave empty PSSUSPEND= -PYTHON=$(command -v "@PYTHON@") +PYTHON=$(command -v "@PYTHON@" || true) PYTEST=@PYTEST@ #