You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 regels
304 B

  1. #!/bin/sh
  2. #
  3. # Check for Doxygen warnings
  4. #
  5. if warnings="$(grep -c Warning: ../doc/doxygen.log 2>/dev/null)"; then
  6. echo "error: $warnings warnings in Doxygen generation:"
  7. grep Warning: ../doc/doxygen.log | sed 's/\(.\{75\}\)...*/\1 .../'
  8. exit 1
  9. fi
  10. echo "0 visible errors in documentation"
  11. exit 0