Skip to content

Commit 54152eb

Browse files
committed
common.sh: remove forgotten part of code with sed -z.
Correction for aab6c7d commit. Addressed to #538
1 parent aab6c7d commit 54152eb

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/main/scripts/ci/common.sh

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,5 @@ print_log() {
1717
echo
1818
echo "=====> \033[1;33m$msg\033[0m"
1919
echo
20-
# yes, it's a hard coded workaround for #538
21-
if [ "$log_file" = 'verify.log' ]; then
22-
# we need -z option to be able to replace new line character
23-
egrep -v '^\[INFO\] Download(ing|ed):' "$log_file" | sed -z -f "$(dirname "$0")/ignore-htmlunit-messages.sed"
24-
else
25-
egrep -v '^\[INFO\] Download(ing|ed):' "$log_file"
26-
fi
20+
egrep -v '^\[INFO\] Download(ing|ed):' "$log_file"
2721
}

0 commit comments

Comments
 (0)