diff options
author | Jim Hahn <jrh3@att.com> | 2021-06-04 13:22:49 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2021-06-07 12:09:18 +0000 |
commit | dcc1a8eaa3791ac63d28a9fab842f481038f086d (patch) | |
tree | 17573d3632fd5e8fe9aa930a119a1e4ce589c593 /csit/drools-pdp | |
parent | 7c7f09a88b5095a570ee22bf7dd32e1f2fe5f26c (diff) |
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 <jrh3@att.com>
(cherry picked from commit fe3e91c55264ba67b5130b9841e30b634ac157a6)
Diffstat (limited to 'csit/drools-pdp')
-rwxr-xr-x | csit/drools-pdp/plans/setup.sh | 6 |
1 files changed, 3 insertions, 3 deletions
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 |