We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ee9f05 commit eab9efaCopy full SHA for eab9efa
.travis.yml
@@ -35,7 +35,7 @@ install:
35
local command=(mvn $@)
36
exec "${command[@]}" 2>&1 | # execute, redirect stderr to stdout
37
tee .build.log | # write output to log
38
- stdbuf -oL grep -E '^\[INFO\] Building .+ \[.+\]$' | # filter progress
+ stdbuf -oL grep -aE '^\[INFO\] Building .+ \[.+\]$' | # filter progress
39
sed -uE 's/^\[INFO\] Building (.*[^ ])[ ]+\[([0-9]+\/[0-9]+)\]$/\2| \1/' | # prefix project name with progress
40
sed -e :a -e 's/^.\{1,4\}|/ &/;ta' & # right align progress with padding
41
local pid=$!
0 commit comments