clean up
This commit is contained in:
parent
ab0c87e88d
commit
8db8e4037c
1 changed files with 1 additions and 3 deletions
|
|
@ -98,15 +98,13 @@ if [ ! -f ${DOXYFILE} ]; then
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo -e "\e[31m-------------------------------------------"
|
|
||||||
|
|
||||||
# Print out doxygen warnings in red
|
# Print out doxygen warnings in red
|
||||||
${TRAVIS_BUILD_DIR}/doxygen $DOXYFILE 2>&1 | tee foo.txt > >(while read line; do echo -e "\e[01;31m$line\e[0m" >&2; done)
|
${TRAVIS_BUILD_DIR}/doxygen $DOXYFILE 2>&1 | tee foo.txt > >(while read line; do echo -e "\e[01;31m$line\e[0m" >&2; done)
|
||||||
|
|
||||||
# if any warnings, bail!
|
# if any warnings, bail!
|
||||||
if [ -s foo.txt ]; then exit 1 ; fi
|
if [ -s foo.txt ]; then exit 1 ; fi
|
||||||
|
|
||||||
echo -e "\e[32m-------------------------------------------"
|
rm foo.txt
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
##### Upload the documentation to the gh-pages branch of the repository. #####
|
##### Upload the documentation to the gh-pages branch of the repository. #####
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue