From 706b47aa582cb64db4cc85e31e2fec815bc426cb Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Mon, 1 Aug 2016 18:25:27 -0500 Subject: [PATCH] Fix CI script for Python version match --- run-tests-for-ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-tests-for-ci.sh b/run-tests-for-ci.sh index ab6ed9de..9c07597f 100644 --- a/run-tests-for-ci.sh +++ b/run-tests-for-ci.sh @@ -57,7 +57,7 @@ export PATH=`pwd`/.env/local/bin:$PATH PIP="${PY_EXE} $(which pip)" grep -v dnspython requirements.txt > req.txt -if [[ "$PY_EXE" = "python2*" ]]; then +if [[ "$PY_EXE" = python2* ]]; then $PIP install dnspython else $PIP install dnspython3 -- GitLab