提交 12dbc261 编写于 作者: P PMheart

Docs: Do not perform hash check by default

上级 a7476d96
......@@ -218,7 +218,7 @@ jobs:
- name: Check documentation
run: |
./Docs/BuildDocs.tool
./Docs/BuildDocs.tool --check-docs
analyze-coverity:
name: Analyze Coverity
......
......@@ -54,7 +54,9 @@ builddocs() {
latexbuild Errata
cd .. || abort "Unable to cd back to Docs directory"
}
checkdocs() {
err=0
if [ "$(which md5)" != "" ]; then
HASH=$(md5 Configuration.tex | cut -f4 -d' ')
......@@ -138,6 +140,12 @@ main() {
fi
builddocs
case "$1" in
-c|--check-docs )
checkdocs
;;
esac
}
main "$@"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册