Skip to content

Commit 766d599

Browse files
committed
melting-pot: handle colored Maven output even more
The prior-success.sh script also needs to be aware of it when parsing the build.log for "BUILD SUCCESS".
1 parent 3e44d60 commit 766d599

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

melting-pot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ dir=$(cd "$(dirname "$0")" && pwd)
624624
625625
# Check build.log for BUILD SUCCESS.
626626
buildLog="$dir/$1/build.log"
627-
test -f "$buildLog" && tail -n6 "$buildLog" | grep -qF '[INFO] BUILD SUCCESS' && {
627+
test -f "$buildLog" && tail -n6 "$buildLog" | grep -qF 'BUILD SUCCESS' && {
628628
echo "build.log"
629629
exit 0
630630
}

0 commit comments

Comments
 (0)