File: generate_website_docs.sh

package info (click to toggle)
python-opentelemetry 1.39.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,952 kB
  • sloc: python: 53,083; sh: 398; makefile: 142; sql: 39
file content (12 lines) | stat: -rwxr-xr-x 223 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
set -e

# this script generates the documentation required for
# opentelemetry.io

pip install -r docs-requirements.txt

TMP_DIR=/tmp/python_otel_docs
rm -Rf ${TMP_DIR}

sphinx-build -M jekyll ./docs ${TMP_DIR}