We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d34a434 commit 8e264f9Copy full SHA for 8e264f9
1 file changed
ci/setup-cfengine-build-host.sh
@@ -130,6 +130,7 @@ else
130
# try pipx first for debian as pip won't work.
131
# If that fails to install CFEngine then try python3-pip for redhats.
132
PIP=""
133
+ software python3-venv || true # on ubuntu-20 this is needed, debian-12 it is not but won't hurt
134
if software pipx; then
135
PIP=pipx
136
export PATH=$HOME/.local/bin:$PATH
@@ -149,6 +150,7 @@ else
149
150
fi
151
export PATH=/usr/local/bin:$PATH # some pip/pipx use /usr/local/bin
152
153
+ $PIP uninstall cf-remote || true # just in case a previous is there and would cause the install to fail
154
$PIP install cf-remote
155
156
if ! command -v cf-remote; then
0 commit comments