Skip to content

Commit

Permalink
Suppress warnings about attributes with the 'inherited' type.
Browse files Browse the repository at this point in the history
The proper handling of this content type will be implemented in the upcoming weeks.
  • Loading branch information
vaitkus authored Jun 27, 2023
1 parent 3d9203b commit 78aec31
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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:"
Expand Down

0 comments on commit 78aec31

Please sign in to comment.