Created to fix http://code.google.com/p/skia/issues/detail?id=817 : UpdateDoxygen step does not fail when Doxygen step fails.
Review URL: https://codereview.appspot.com/6480060 git-svn-id: http://skia.googlecode.com/svn/trunk@5278 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
parent
3350c3c68a
commit
0032407e29
@ -35,6 +35,12 @@ fi
|
||||
# Run Doxygen.
|
||||
cd trunk
|
||||
doxygen Doxyfile
|
||||
ret_code=$?
|
||||
if [ $ret_code != 0 ]; then
|
||||
echo "Error while executing Doxygen command"
|
||||
exit $ret_code
|
||||
fi
|
||||
|
||||
cd ../docs
|
||||
|
||||
# Add any newly created files to Subversion.
|
||||
|
Loading…
Reference in New Issue
Block a user