mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-25 22:18:30 +02:00
9 lines
258 B
Bash
9 lines
258 B
Bash
#!/bin/bash
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
DOCS_PATH=$(realpath $SCRIPT_DIR/../qdrant-landing/content/documentation)
|
|
|
|
|
|
find $DOCS_PATH -name '*.md' | xargs -I {} bash ${SCRIPT_DIR}/generate-doc-preview.sh {}
|