CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/Tools/scripts/build_docs.sh
Views: 1798
1
#!/usr/bin/env bash
2
3
set -e
4
5
# work from either APM directory or above
6
[ -d ArduPlane ] || cd APM
7
8
export DOCS_OUTPUT_BASE=./docs
9
10
(
11
$DOCS_OUTPUT_BASE/build-libs.sh
12
$DOCS_OUTPUT_BASE/build-arduplane.sh
13
$DOCS_OUTPUT_BASE/build-arducopter.sh
14
$DOCS_OUTPUT_BASE/build-apmrover2.sh
15
$DOCS_OUTPUT_BASE/build-ardusub.sh
16
) > $DOCS_OUTPUT_BASE/build_docs.log 2>&1
17
18