Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorbmw <bmw@users.noreply.github.com>2016-06-03 02:42:55 +0300
committerbmw <bmw@users.noreply.github.com>2016-06-03 02:42:55 +0300
commit6a0c6c85fb7028fdc3793325d40681b7c34f777f (patch)
treed493da0265d4d5f7eb18bef52516d55893d0bdff /tools
parentb9ce09419f6d3f646f8541fbe40f8f3b0dbb1952 (diff)
Revert "Use --force-reinstall to fix bad virtualenv package"
Diffstat (limited to 'tools')
-rwxr-xr-xtools/_venv_common.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/_venv_common.sh b/tools/_venv_common.sh
index dc6ca3dd2..a121af82d 100755
--- a/tools/_venv_common.sh
+++ b/tools/_venv_common.sh
@@ -18,8 +18,7 @@ virtualenv --no-site-packages $VENV_NAME $VENV_ARGS
# Separately install setuptools and pip to make sure following
# invocations use latest
pip install -U setuptools
-# --force-reinstall used to fix broken pip installation on some systems
-pip install --force-reinstall -U pip
+pip install -U pip
pip install "$@"
set +x