ardupilot/Tools/scripts/build_examples.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
351 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -e
cat >&2 <<EOF
This script is deprecated in favour of running waf with 'examples' as the main command
cd \$ARDUPILOT_HOME
./modules/waf/waf-light configure --board=linux
./modules/waf/waf-light examples
Sleeping for a few seconds to let you digest that.
EOF
sleep 4
set -x
PY="$(dirname $0)/build_examples.py"
$PY $*