commit | 0032407e294aecc9306e1610c0cf0d998c9a5cfe | [log] [tgz] |
---|---|---|
author | rmistry@google.com <rmistry@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Fri Aug 24 17:16:05 2012 +0000 |
committer | rmistry@google.com <rmistry@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Fri Aug 24 17:16:05 2012 +0000 |
tree | 2e7c2e5e4598b571b2d0ae743ec55d81f59e9796 | |
parent | 3350c3c68ab75cd08721da3a938b8d2b10096d70 [diff] [blame] |
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
diff --git a/tools/update-doxygen.sh b/tools/update-doxygen.sh index 5474b17..3b42191 100755 --- a/tools/update-doxygen.sh +++ b/tools/update-doxygen.sh
@@ -35,6 +35,12 @@ # 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.