Also handle inexistant doc path.

This commit is contained in:
Florian Bruhin 2016-01-04 20:35:16 +01:00
parent ea182934f3
commit 20faecc7a0

View File

@ -36,8 +36,9 @@ def update_documentation():
doc_path = os.path.join(base_path, 'html', 'doc')
script_path = os.path.join(base_path, '..', 'scripts')
if all(docutils.docs_up_to_date(path) for path in os.listdir(doc_path)):
return
if os.path.exists(doc_path):
if all(docutils.docs_up_to_date(p) for p in os.listdir(doc_path)):
return
try:
subprocess.call(['asciidoc'], stdout=subprocess.DEVNULL,