From 031036be9c8ecd794a73a9001fea5919aebff2d7 Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Mon, 16 May 2022 11:14:41 -0700 Subject: [PATCH] Call pip using python -m flag during FreeBSD CI prep --- ci/freebsd/prepare.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/freebsd/prepare.sh b/ci/freebsd/prepare.sh index 8a51a49461..b899da5fe9 100755 --- a/ci/freebsd/prepare.sh +++ b/ci/freebsd/prepare.sh @@ -10,4 +10,5 @@ pkg install -y bash git cmake swig bison python3 base64 pkg upgrade -y curl pyver=$(python3 -c 'import sys; print(f"py{sys.version_info[0]}{sys.version_info[1]}")') pkg install -y $pyver-sqlite3 $pyver-pip -pip install junit2html + +python -m pip install junit2html