Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

check-doxygen 304 B

1234567891011121314
  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