Skip to content

Commit

Permalink
Add verification log check. Fixes #7
Browse files Browse the repository at this point in the history
  • Loading branch information
mdenkinger authored and thepieterdc committed May 3, 2020
1 parent 310fa97 commit b349f12
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ cat "$verification_log"
if egrep -q "^Plugin (.*) against .*: .* compatibility problems?$" "$verification_log"; then
# An error has occurred.
exit 1
elif egrep -q "^The following files specified for the verification are not valid plugins:$" "$verification_log"; then
# An error has occurred.
exit 1
else
# Everything's fine.
exit 0
Expand Down

0 comments on commit b349f12

Please sign in to comment.