From 2b1fa5a3f1e7d6142c2cfc56f97dfc67d660231f Mon Sep 17 00:00:00 2001 From: Yunsong Wang Date: Thu, 7 Nov 2024 09:35:51 -0800 Subject: [PATCH] Update --- ci/pre-commit/doxygen.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ci/pre-commit/doxygen.sh b/ci/pre-commit/doxygen.sh index 3ad1a051b..5deeaa7a8 100755 --- a/ci/pre-commit/doxygen.sh +++ b/ci/pre-commit/doxygen.sh @@ -36,7 +36,13 @@ fi # Run doxygen, ignore missing tag files error TAG_ERROR1="error: Tag file '.*.tag' does not exist or is not a file. Skipping it..." TAG_ERROR2="error: cannot open tag file .*.tag for writing" -DOXYGEN_STDERR=`cd doxygen && { cat Doxyfile ; echo QUIET = YES; echo GENERATE_HTML = NO; } | doxygen - 2>&1 | sed "/\($TAG_ERROR1\|$TAG_ERROR2\)/d"` + +cd doxygen +echo "--- Doxyfile ---" +cat Doxyfile +echo "----------------" +doxygen + RETVAL=$? #if [ "$RETVAL" != "0" ] || [ ! -z "$DOXYGEN_STDERR" ]; then