From d4fe45c0016221a0e685e71a6378208e0409dbb5 Mon Sep 17 00:00:00 2001 From: JM Etancelin <jean-matthieu.etancelin@univ-pau.fr> Date: Fri, 17 Feb 2023 14:54:05 +0100 Subject: [PATCH] fixup [with doc] --- build_doc.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build_doc.sh b/build_doc.sh index b3c353a..7503054 100755 --- a/build_doc.sh +++ b/build_doc.sh @@ -22,6 +22,10 @@ CC="gcc-11" CXX="g++-11" FC="gfortran-11" make VERBOSE=1 -j4 ## Workaround : distutils writes files to lib.linux-x86_64-cpython-310 dir and sphinx is looking into lib.linux-x86_64-3.10 ln -s ${BUILD_DIR}/build/$(ls ./build | grep '^lib') ${BUILD_DIR}/build/$(ls ./build | grep '^src'|sed 's/src/lib/') CC="gcc-11" CXX="g++-11" FC="gfortran-11" make VERBOSE=1 -j4 doc +cd - mv ${BUILD_DIR}/docs/build/html public +find ${BUILD_DIR}/docs/build/html -name 'index.html' +ls public +find public -name 'index.html' exit 0 -- GitLab