fix help output (#9509)

This commit is contained in:
Brad Warren
2022-12-15 11:27:23 +11:00
committed by GitHub
parent a807240db7
commit 27af7b5d15
+9 -1
View File
@@ -169,6 +169,14 @@ VIRTUALENV_NO_DOWNLOAD=1 virtualenv ../venv
. ../venv/bin/activate
pip install -U setuptools
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
# we (or our dependencies) have conditional dependencies implemented with if
# 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 \
--no-cache-dir \
--find-links . \
$SUBPKGS
$subpkgs_with_version
cd ~-
# get a snapshot of the CLI help for the docs