Skip to content
Snippets Groups Projects
Commit 6d86a36b authored by Christian Goetze (CG)'s avatar Christian Goetze (CG)
Browse files

Re-indent teamcity service messages when scanning build logs to fix incredibuild formatting.

parent 299615e9
No related branches found
No related tags found
No related merge requests found
...@@ -209,7 +209,7 @@ do ...@@ -209,7 +209,7 @@ do
end_section BuildParallel end_section BuildParallel
else else
begin_section "Build$variant" begin_section "Build$variant"
build "$variant" "$build_dir" 2>&1 | tee -a "$build_log" | grep --line-buffered "^##teamcity" build "$variant" "$build_dir" 2>&1 | tee -a "$build_log" | sed -n 's/^ *\(##teamcity.*\)/\1/p'
if `cat "$build_dir/build_ok"` if `cat "$build_dir/build_ok"`
then then
echo so far so good. echo so far so good.
...@@ -238,7 +238,7 @@ then ...@@ -238,7 +238,7 @@ then
begin_section "Build$variant" begin_section "Build$variant"
build_dir=`build_dir_$arch $variant` build_dir=`build_dir_$arch $variant`
build_dir_stubs="$build_dir/win_setup/$variant" build_dir_stubs="$build_dir/win_setup/$variant"
tee -a $build_log < "$build_dir/build.log" | grep --line-buffered "^##teamcity" tee -a $build_log < "$build_dir/build.log" | sed -n 's/^ *\(##teamcity.*\)/\1/p'
if `cat "$build_dir/build_ok"` if `cat "$build_dir/build_ok"`
then then
echo so far so good. echo so far so good.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment