From 4502717129965535e279842d2213fbf5c9af7d65 Mon Sep 17 00:00:00 2001 From: Adnaan Bheda Date: Wed, 19 Oct 2022 11:17:26 +0530 Subject: [PATCH] Fix pip upgrade in TestSuite checks (#1715) --- scripts/install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/install b/scripts/install index 58b632403..edd300997 100755 --- a/scripts/install +++ b/scripts/install @@ -12,8 +12,8 @@ if [ -z "$GITHUB_ACTIONS" ]; then "$PYTHON" -m venv "$VENV" PIP="$VENV/bin/pip" else - PIP="pip" + PIP="$PYTHON -m pip" fi -"$PIP" install -U pip -"$PIP" install -r "$REQUIREMENTS" +${PIP} install -U pip +${PIP} install -r "$REQUIREMENTS"