您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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