From 2c1d9cc610663e9687437a9fb84c004e9be8ce9c Mon Sep 17 00:00:00 2001 From: James Lamb Date: Sat, 14 Dec 2024 20:57:57 -0600 Subject: [PATCH] [ci] fix linkchecker job --- .ci/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/test.sh b/.ci/test.sh index cc8831f94c09..04faba7bad27 100755 --- a/.ci/test.sh +++ b/.ci/test.sh @@ -147,7 +147,7 @@ if [[ $TASK == "check-docs" ]] || [[ $TASK == "check-links" ]]; then if [[ $TASK == "check-links" ]]; then # check docs for broken links pip install linkchecker - linkchecker --config=.linkcheckerrc ./docs/_build/html/*.html || exit 1 + linkchecker --config=./docs/.linkcheckerrc ./docs/_build/html/*.html || exit 1 exit 0 fi # check the consistency of parameters' descriptions and other stuff