Merge "Fail fetch-sphinx-tarball if no html exists"

This commit is contained in:
Zuul 2020-04-20 16:19:35 +00:00 committed by Gerrit Code Review
commit 2c3444a066

View File

@ -17,3 +17,10 @@
include_tasks: pdf.yaml
# Other sphinx output processing can be added here.
# Finally fail, if no html exists
- name: Fail if no HTML exists
fail:
msg: 'No html output in "{{ sphinx_build_dir }}".'
when: "'html' not in sphinx_dir"