You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
346 B
16 lines
346 B
#!/bin/bash |
|
|
|
set -e |
|
|
|
# work from either APM directory or above |
|
[ -d ArduPlane ] || cd APM |
|
|
|
export DOCS_OUTPUT_BASE=./docs |
|
|
|
( |
|
$DOCS_OUTPUT_BASE/build-libs.sh |
|
$DOCS_OUTPUT_BASE/build-arduplane.sh |
|
$DOCS_OUTPUT_BASE/build-arducopter.sh |
|
$DOCS_OUTPUT_BASE/build-apmrover2.sh |
|
$DOCS_OUTPUT_BASE/build-ardusub.sh |
|
) > $DOCS_OUTPUT_BASE/build_docs.log 2>&1
|
|
|