diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2022-06-23 10:52:15 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2022-06-23 10:52:15 +0200 |
commit | 9c3a51cde4f291044bd9bd4a21d1ba314091d715 (patch) | |
tree | 885811d81655d97228545f19d73434e91d159458 | |
parent | 8a3ae3257d658d85579413ddde39a9cacdcef81e (diff) | |
download | s2i-sphinx-9c3a51cde4f291044bd9bd4a21d1ba314091d715.tar.gz |
linux kernel quirk
-rwxr-xr-x | s2i/bin/assemble | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/s2i/bin/assemble b/s2i/bin/assemble index 9436885..3789dbe 100755 --- a/s2i/bin/assemble +++ b/s2i/bin/assemble @@ -23,6 +23,14 @@ if test ! -f "$cfg"; then exit 1 fi +if test -f Documentation/sphinx/requirements.txt; then + echo "---> linux kernel quirk ..." + python3 -m venv linux-sphinx + source linux-sphinx/bin/activate + python3 -m pip install --upgrade pip + python3 -m pip install --upgrade -r Documentation/sphinx/requirements.txt +fi + echo "---> Building docs, using $cfg ..." sphinx-build ${cfg%/conf.py} html |