Skip to content
Snippets Groups Projects
Commit 2bd960321d8f authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:ambulance: fix warning output directory not created

parent a2034358df51
No related branches found
No related tags found
No related merge requests found
......@@ -131,6 +131,8 @@
if [[ -d "$doc_dir" ]] ; then
pushd $doc_dir
for language in $languages ; do
# create _build to output warnings into it
[[ -d _build ]] || mkdir _build/
make $format LANGUAGE=${language} BUILDDIR=_build SPHINXOPTS="-w _build/warnings.out"
if [[ $? -eq 0 ]] ; then
dest_dir=$out_dir/$project_name/$language/$branch
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment