From 09f00ad5dd2ad561da2cd8c7b0b428d80c42a95d Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Wed, 16 Dec 2020 13:50:57 +1100 Subject: [PATCH] PYTHON may be null When Python is not present, PYTHON=$(command -v "@PYTHON@") will exit the script with 1, prevent that by adding "|| true". --- bin/tests/system/conf.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/conf.sh.in b/bin/tests/system/conf.sh.in index 48442c405c..74b0ebbf1f 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@ #