Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ardupilot
GitHub Repository: Ardupilot/ardupilot
Path: blob/master/Tools/scripts/build_docs.sh
9383 views
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