mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
add disable pip version check flag
This commit is contained in:
parent
7ad41dc3ef
commit
f5580598cd
1 changed files with 3 additions and 3 deletions
|
|
@ -562,7 +562,7 @@ BootstrapMac() {
|
|||
if ! hash virtualenv 2>/dev/null; then
|
||||
say "virtualenv not installed."
|
||||
say "Installing with pip..."
|
||||
pip install virtualenv
|
||||
pip install --disable-pip-version-check virtualenv
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
@ -1045,9 +1045,9 @@ UNLIKELY_EOF
|
|||
PATH="$VENV_BIN:$PATH" "$VENV_BIN/python" "$TEMP_DIR/pipstrap.py"
|
||||
set +e
|
||||
if [ "$VERBOSE" = 1 ]; then
|
||||
"$VENV_BIN/pip" install --no-cache-dir --require-hashes -r "$TEMP_DIR/letsencrypt-auto-requirements.txt"
|
||||
"$VENV_BIN/pip" install --disable-pip-version-check --no-cache-dir --require-hashes -r "$TEMP_DIR/letsencrypt-auto-requirements.txt"
|
||||
else
|
||||
PIP_OUT=`"$VENV_BIN/pip" install --no-cache-dir --require-hashes -r "$TEMP_DIR/letsencrypt-auto-requirements.txt" 2>&1`
|
||||
PIP_OUT=`"$VENV_BIN/pip" install --disable-pip-version-check --no-cache-dir --require-hashes -r "$TEMP_DIR/letsencrypt-auto-requirements.txt" 2>&1`
|
||||
fi
|
||||
PIP_STATUS=$?
|
||||
set -e
|
||||
|
|
|
|||
Loading…
Reference in a new issue