diff options
author | Oz Linden <oz@lindenlab.com> | 2015-11-10 17:13:39 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2015-11-10 17:13:39 -0500 |
commit | 0dcc278305d8c28d3c49eb652c062c53ee91fe5b (patch) | |
tree | ebd69ff30c2398981bcf08bca36c4f11fc1e5402 /build.sh | |
parent | b97a4c8fc3c2453fa826920415024e3d4dd3d264 (diff) |
fix tarball creation for doxygen output
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -263,13 +263,14 @@ do fi if [ -d "$build_dir/doxygen/html" ] then - (cd "$build_dir/doxygen/html"; tar cjf "$build_dir/viewer-doxygen.tar.bz2" .) + tar -c -f "$build_dir/viewer-doxygen.tar.bz2" --strip-components 3 "$build_dir/doxygen/html" upload_item docs "$build_dir/viewer-doxygen.tar.bz2" binary/octet-stream fi ;; *) ;; esac + else record_failure "Build of \"$variant\" failed." fi |