From fe3e91c55264ba67b5130b9841e30b634ac157a6 Mon Sep 17 00:00:00 2001 From: Jim Hahn Date: Fri, 4 Jun 2021 13:22:49 -0400 Subject: Don't use pip3 wrapper script The pip3 script generates a warning saying to use "python3 -m pip" instead. Modified the code as such. Issue-ID: POLICY-3155 Change-Id: I852583bea88b6d4b969a1aba20e7b9193fa24732 Signed-off-by: Jim Hahn --- csit/drools-pdp/plans/setup.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'csit/drools-pdp') diff --git a/csit/drools-pdp/plans/setup.sh b/csit/drools-pdp/plans/setup.sh index 3f3624fa..6b02e76a 100755 --- a/csit/drools-pdp/plans/setup.sh +++ b/csit/drools-pdp/plans/setup.sh @@ -22,9 +22,9 @@ source ${SCRIPTS}/get-branch-mariadb.sh # OS upgrades echo "Uninstall docker-py and reinstall docker." -pip3 uninstall -y docker-py -pip3 uninstall -y docker -pip3 install -U docker +python3 -m pip uninstall -y docker-py +python3 -m pip uninstall -y docker +python3 -m pip install -U docker sudo apt-get -y install libxml2-utils -- cgit 1.2.3-korg