Skip to content

Commit

Permalink
Fix document builder output directory path
Browse files Browse the repository at this point in the history
  • Loading branch information
owent committed Jul 3, 2020
1 parent 06386f7 commit 937953d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,14 @@ matrix:
DOXYGEN_DIR=$(ls -d doxygen-* | grep -v grep | grep -v ".tar.gz");
cp -rf $DOXYGEN_DIR/* "$DOXYGEN_PREFIX";
fi
mkdir -p sphinx/doxygen ;
doxygen libcopp.doxyfile;
ls -d sphinx/doxygen/* ;
sphinx-build -b html -a -D breathe_projects.libcopp=doxygen/xml sphinx output;
if [[ -e "output/doxygen/html" ]]; then
rm -rf "output/doxygen/html";
fi
mkdir -p sphinx/doxygen/ ;
mkdir -p output/doxygen/ ;
mv -f "sphinx/doxygen/html" "output/doxygen/html";
after_success: |
if [[ -e output ]]; then
Expand Down

0 comments on commit 937953d

Please sign in to comment.