Skip to content

Commit 7c9acd4

Browse files
committed
src/main/scripts/ci/common.sh(print_log): don't fail when file doesn't contain ignored patterns.
Correction for f296397 commit. Addressed to #351
1 parent 6072ed9 commit 7c9acd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scripts/ci/common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ print_log() {
1616
echo
1717
printf "=====> \033[1;33m%s\033[0m\n" "$msg"
1818
echo
19-
egrep -v '^\[INFO\] Download(ing|ed):' "$log_file"
19+
egrep -v '^\[INFO\] Download(ing|ed):' "$log_file" || :
2020
}

0 commit comments

Comments
 (0)