From e699a32f905c609163a4d7489b7b156c634fe511 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Wed, 18 Jul 2018 12:07:52 +0200 Subject: bin/sanity-check: do not fail if "find" returns non-zero when looking for mysql left-overs --- bin/sanity-check | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/sanity-check b/bin/sanity-check index 965986b..0a3853f 100755 --- a/bin/sanity-check +++ b/bin/sanity-check @@ -457,7 +457,8 @@ while [ $# -gt 0 ]; do 'printf '"'"'%s:\n'"'"' {} && '\ 'sed '"'"'s/^/>> /'"'"' {} "' - ) + ) || \ + true if [ -n "${errors}" ]; then if [ ${silence} -le 1 ]; then printf '\nThere are pending mysql queries:\n%s\n' \ -- cgit v1.2.3