mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-15 22:09:31 -04:00
Simplify Sphinx tools installation
Pointing pip3 to the "requirements file" eliminates the necessity for removing comments.
This commit is contained in:
parent
62697a1351
commit
93dc606fa8
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ run_in_container "git -c advice.detachedHead=false clone --branch v${BIND_VERSIO
|
|||
cd bind9 && \
|
||||
apt-get -y install --no-install-recommends python3-pip && \
|
||||
rm -f /usr/lib/python3.*/EXTERNALLY-MANAGED && \
|
||||
pip3 install \$(awk '!/^#/ { printf \"%s \", \$0 }' doc/arm/requirements.txt) && \
|
||||
pip3 install -r doc/arm/requirements.txt && \
|
||||
if [ $(echo "${BIND_VERSION}" | cut -b 1-5) = 9.16. ]; then \
|
||||
git archive --prefix=${BIND_DIRECTORY}/ --output=${BIND_DIRECTORY}.tar HEAD && \
|
||||
mkdir ${BIND_DIRECTORY} && \
|
||||
|
|
|
|||
Loading…
Reference in a new issue