Also handle inexistant doc path.
This commit is contained in:
parent
ea182934f3
commit
20faecc7a0
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user