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

Commit ba7eeb9

Browse files
author
CI
committed
Automated update for script library changes
1 parent 3445f72 commit ba7eeb9

File tree

20 files changed

+31
-31
lines changed

20 files changed

+31
-31
lines changed

containers/azure-ansible/.devcontainer/library-scripts/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

containers/azure-ansible/.devcontainer/library-scripts/docker-debian.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,10 +200,10 @@ else
200200
export PIP_CACHE_DIR=/tmp/pip-tmp/cache
201201
pipx_bin=pipx
202202
if ! type pipx > /dev/null 2>&1; then
203-
pip3 install --disable-pip-version-check --no-warn-script-location --no-cache-dir --user pipx
203+
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/"

containers/azure-bicep/.devcontainer/library-scripts/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

containers/azure-cli/.devcontainer/library-scripts/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

containers/azure-terraform/.devcontainer/library-scripts/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

containers/azure-terraform/.devcontainer/library-scripts/docker-debian.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,10 +200,10 @@ else
200200
export PIP_CACHE_DIR=/tmp/pip-tmp/cache
201201
pipx_bin=pipx
202202
if ! type pipx > /dev/null 2>&1; then
203-
pip3 install --disable-pip-version-check --no-warn-script-location --no-cache-dir --user pipx
203+
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/"

containers/codespaces-linux/.devcontainer/library-scripts/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

containers/codespaces-linux/.devcontainer/library-scripts/docker-debian.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,10 +200,10 @@ else
200200
export PIP_CACHE_DIR=/tmp/pip-tmp/cache
201201
pipx_bin=pipx
202202
if ! type pipx > /dev/null 2>&1; then
203-
pip3 install --disable-pip-version-check --no-warn-script-location --no-cache-dir --user pipx
203+
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/"

containers/codespaces-linux/.devcontainer/library-scripts/docker-in-docker-debian.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,10 +212,10 @@ else
212212
export PIP_CACHE_DIR=/tmp/pip-tmp/cache
213213
pipx_bin=pipx
214214
if ! type pipx > /dev/null 2>&1; then
215-
pip3 install --disable-pip-version-check --no-warn-script-location --no-cache-dir --user pipx
215+
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

containers/codespaces-linux/.devcontainer/library-scripts/python-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ export PYTHONUSERBASE=/tmp/pip-tmp
333333
export PIP_CACHE_DIR=/tmp/pip-tmp/cache
334334
pipx_path=""
335335
if ! type pipx > /dev/null 2>&1; then
336-
pip3 install --disable-pip-version-check --no-warn-script-location --no-cache-dir --user pipx
336+
pip3 install --disable-pip-version-check --no-cache-dir --user pipx 2>&1
337337
/tmp/pip-tmp/bin/pipx install --pip-args=--no-cache-dir pipx
338338
pipx_path="/tmp/pip-tmp/bin/"
339339
fi

0 commit comments

Comments
 (0)