mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 08:08:00 +02:00
fix help output (#9509)
This commit is contained in:
+9
-1
@@ -169,6 +169,14 @@ VIRTUALENV_NO_DOWNLOAD=1 virtualenv ../venv
|
|||||||
. ../venv/bin/activate
|
. ../venv/bin/activate
|
||||||
pip install -U setuptools
|
pip install -U setuptools
|
||||||
pip install -U pip
|
pip install -U pip
|
||||||
|
|
||||||
|
# This creates a string like "acme==a.b.c certbot==a.b.c ..." which can be used
|
||||||
|
# with pip to ensure the correct versions of our packages installed.
|
||||||
|
subpkgs_with_version=""
|
||||||
|
for pkg in $SUBPKGS; do
|
||||||
|
subpkgs_with_version="$subpkgs_with_version $pkg==$version"
|
||||||
|
done
|
||||||
|
|
||||||
# Now, use our local archives. Disable cache so we get the correct packages even if
|
# Now, use our local archives. Disable cache so we get the correct packages even if
|
||||||
# we (or our dependencies) have conditional dependencies implemented with if
|
# we (or our dependencies) have conditional dependencies implemented with if
|
||||||
# statements in setup.py and we have cached wheels lying around that would cause
|
# statements in setup.py and we have cached wheels lying around that would cause
|
||||||
@@ -176,7 +184,7 @@ pip install -U pip
|
|||||||
python ../tools/pip_install.py \
|
python ../tools/pip_install.py \
|
||||||
--no-cache-dir \
|
--no-cache-dir \
|
||||||
--find-links . \
|
--find-links . \
|
||||||
$SUBPKGS
|
$subpkgs_with_version
|
||||||
cd ~-
|
cd ~-
|
||||||
|
|
||||||
# get a snapshot of the CLI help for the docs
|
# get a snapshot of the CLI help for the docs
|
||||||
|
|||||||
Reference in New Issue
Block a user