fix
All checks were successful
CI - Docs build check / build-check (push) Successful in 9s

This commit is contained in:
2026-02-05 09:28:36 -06:00
parent 039228ab99
commit c185079bf1
2 changed files with 2 additions and 2 deletions

View File

@@ -40,5 +40,5 @@ jobs:
run: | run: |
set -euo pipefail set -euo pipefail
# Default strict on if unset # Default strict on if unset
echo "Strict is set to {MKDOCS_STRICT:-true}" echo "Strict is set to ${MKDOCS_STRICT:-true}"
tools/build.sh tools/build.sh

View File

@@ -11,5 +11,5 @@ STRICT_FLAG=""
if [ "${MKDOCS_STRICT}" = "true" ]; then if [ "${MKDOCS_STRICT}" = "true" ]; then
STRICT_FLAG="--strict" STRICT_FLAG="--strict"
fi fi
echo "MKDOCS_STRICT: $MKDOCS_STRICT, STRICT_FLAG: $STRICT_FLAG"
mkdocs build ${STRICT_FLAG} -f $MKDOCS_CONFIG -d $OUTPUT_DIR mkdocs build ${STRICT_FLAG} -f $MKDOCS_CONFIG -d $OUTPUT_DIR