mirror of
https://github.com/holos-run/holos.git
synced 2026-03-03 01:49:54 +00:00
13 lines
315 B
Bash
Executable File
13 lines
315 B
Bash
Executable File
#! /bin/bash
|
|
#
|
|
set -euo pipefail
|
|
|
|
TOPLEVEL="$(cd $(dirname "$0") && git rev-parse --show-toplevel)"
|
|
cd "${TOPLEVEL}"
|
|
|
|
if ! [[ -f ./doc/website/node_modules/.bin/cspell ]]; then
|
|
(cd doc/website && npm install)
|
|
fi
|
|
|
|
./doc/website/node_modules/.bin/cspell ./doc/md/**/*.{md,mdx,markdown} ./doc/md/*.{md,mdx,markdown}
|