diff options
author | Christian Goetze (CG) <cg@lindenlab.com> | 2010-09-14 13:40:09 -0700 |
---|---|---|
committer | Christian Goetze (CG) <cg@lindenlab.com> | 2010-09-14 13:40:09 -0700 |
commit | b57ce686acf292ad71ab4979cd19d5b348077c1b (patch) | |
tree | e57d814c9dc24d2f7ea0d8165d1ea2de8b51057f /build.sh | |
parent | c9c02d1236fde6a3fc647d2002959aad955c014c (diff) |
Swap out the order of detecting build failure and grepping for teamcity test result errors
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -251,13 +251,13 @@ then begin_section "Build$variant" build_dir=`build_dir_$arch $variant` build_dir_stubs="$build_dir/win_setup/$variant" - tee -a $build_log < "$build_dir/build.log" | grep --line-buffered "^##teamcity" if `cat "$build_dir/build_ok"` then echo so far so good. else record_failure "Parallel build of \"$variant\" failed." fi + tee -a $build_log < "$build_dir/build.log" | grep --line-buffered "^##teamcity" end_section "Build$variant" done end_section WaitParallel |