From fa466be33da819e0893bd14fe10d0f8e76e705a7 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Sat, 14 Apr 2018 12:44:35 -0700 Subject: [PATCH] Work-around for get-pip.py install failure. --- test/runner/setup/remote.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runner/setup/remote.sh b/test/runner/setup/remote.sh index d8d2a7707e..530a993c41 100644 --- a/test/runner/setup/remote.sh +++ b/test/runner/setup/remote.sh @@ -22,7 +22,7 @@ if [ "${platform}" = "freebsd" ]; then sleep 10 done - pip --version 2>/dev/null || curl --silent --show-error https://bootstrap.pypa.io/get-pip.py | python + pip --version 2>/dev/null || curl --silent --show-error https://bootstrap.pypa.io/get-pip.py | python - --force-reinstall elif [ "${platform}" = "rhel" ]; then while true; do yum install -y \ @@ -36,7 +36,7 @@ elif [ "${platform}" = "rhel" ]; then sleep 10 done - pip --version 2>/dev/null || curl --silent --show-error https://bootstrap.pypa.io/get-pip.py | python + pip --version 2>/dev/null || curl --silent --show-error https://bootstrap.pypa.io/get-pip.py | python - --force-reinstall fi if [ "${platform}" = "freebsd" ] || [ "${platform}" = "osx" ]; then