Files
primitive-type/docs/build_docs.sh
木之清泠 73be4ed075
Some checks failed
Deploy Sphinx Docs / build-and-deploy (push) Has been cancelled
docs(ci): prepare deployment to cloudflare
2026-02-10 16:15:29 +08:00

12 lines
280 B
Bash
Executable File

#!/bin/sh
LANG_CODE=$1
if [ -n "$LANG_CODE" ]; then
echo "Building docs for language: $LANG_CODE..."
sphinx-build -b html source/ "build/html_$LANG_CODE/" -D language="$LANG_CODE"
else
echo "Building docs in English (en_US)..."
sphinx-build -b html source build/html
fi