diff options
author | Oz Linden <oz@lindenlab.com> | 2012-03-21 11:50:03 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2012-03-21 11:50:03 -0400 |
commit | 8ce4be7688bfcf6852a26d0e942aca907cd57a67 (patch) | |
tree | 222c1281bc3c947279eadaea45ca8ab0a8818481 /build.sh | |
parent | 00717147d2b832fa3239267edf409f0a1dfcd9fd (diff) | |
parent | 5b2dbbadf70ee33bfd288b6384ae0d51715488b1 (diff) |
merging up to latest viewer-development
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -90,9 +90,12 @@ build() build_docs() { begin_section Docs - # Stub code to generate docs - echo Hello world > documentation.txt - upload_item docs documentation.txt text/plain + if "$AUTOBUILD" build -c Doxygen + then + echo true >"$build_dir"/build_ok + else + echo false >"$build_dir"/build_ok + fi end_section Docs } |