Ray Milkey | 2a74983 | 2016-08-02 15:22:20 -0700 | [diff] [blame] | 1 | #!/bin/bash |
2 | # ----------------------------------------------------------------------------- | ||||
3 | # Builds the ONOS Java API docs with buck. | ||||
4 | # ----------------------------------------------------------------------------- | ||||
5 | |||||
6 | set -e | ||||
7 | |||||
8 | [ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1 | ||||
9 | . $ONOS_ROOT/tools/build/envDefaults | ||||
10 | |||||
11 | onos-buck build `onos-buck query "filter('.*-javadoc', '//...')"` | ||||
12 |