Fix handling of ansible-doc errors. (#3030)

pull/4420/head
Matt Clay 2016-09-23 15:12:24 -07:00
parent 477d174fbc
commit 841ec9ef1b
1 changed files with 8 additions and 1 deletions

View File

@ -42,10 +42,12 @@ pip list
source hacking/env-setup
docs_status=0
PAGER=/bin/cat \
ANSIBLE_DEPRECATION_WARNINGS=false \
bin/ansible-doc -l \
2>/tmp/ansible-doc.err
2>/tmp/ansible-doc.err || docs_status=$?
if [ -s /tmp/ansible-doc.err ]; then
# report warnings as errors
@ -53,3 +55,8 @@ if [ -s /tmp/ansible-doc.err ]; then
cat /tmp/ansible-doc.err
exit 1
fi
if [ "${docs_status}" -ne 0 ]; then
echo "Running 'ansible-doc -l' failed with no output on stderr and exit code: ${docs_status}"
exit 1
fi