Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 3445f72

Browse files
committed
Remove --system-site-packages to avoid compilation errors (related to #1170)
1 parent ac5cb52 commit 3445f72

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

script-library/azcli-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ install_using_pip() {
150150
fi
151151

152152
set +e
153-
${pipx_bin} install --system-site-packages --pip-args '--no-cache-dir --force-reinstall' -f azure-cli${ver}
153+
${pipx_bin} install --pip-args '--no-cache-dir --force-reinstall' -f azure-cli${ver}
154154

155155
# Fail gracefully
156156
if [ "$?" != 0 ]; then

script-library/docker-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ else
203203
pip3 install --disable-pip-version-check --no-cache-dir --user pipx
204204
pipx_bin=/tmp/pip-tmp/bin/pipx
205205
fi
206-
${pipx_bin} install --system-site-packages --pip-args '--no-cache-dir --force-reinstall' docker-compose
206+
${pipx_bin} install --pip-args '--no-cache-dir --force-reinstall' docker-compose
207207
rm -rf /tmp/pip-tmp
208208
else
209209
find_version_from_git_tags DOCKER_DASH_COMPOSE_VERSION "https://github.com/docker/compose" "tags/"

script-library/docker-in-docker-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ else
215215
pip3 install --disable-pip-version-check --no-cache-dir --user pipx
216216
pipx_bin=/tmp/pip-tmp/bin/pipx
217217
fi
218-
${pipx_bin} install --system-site-packages --pip-args '--no-cache-dir --force-reinstall' docker-compose
218+
${pipx_bin} install --pip-args '--no-cache-dir --force-reinstall' docker-compose
219219
rm -rf /tmp/pip-tmp
220220
else
221221
# Only supports docker-compose v1

0 commit comments

Comments
 (0)