From 78aec3161e3dba32e0147cc1e8cbf6ea05740dd6 Mon Sep 17 00:00:00 2001 From: Antanas Vaitkus Date: Tue, 27 Jun 2023 03:23:34 +0300 Subject: [PATCH] Suppress warnings about attributes with the 'inherited' type. The proper handling of this content type will be implemented in the upcoming weeks. --- entrypoint.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index 370d63f..66e7a8f 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -135,6 +135,13 @@ do #~ -e "ignored message A" \ #~ -e "regular expression matching ignored message B .*?" | #~ sponge "${ERR_FILE}" + + # Suppress warnings about dictionary attributes with the 'inherited' + # type until this functionality gets properly implemented. + grep "${ERR_FILE}" -v \ + -e "content type 'inherited' is not recognised" | + sponge "${ERR_FILE}" + if [ -s "${ERR_FILE}" ] then echo "Dictionary validation generated the following non-fatal errors:"