mirror of
https://github.com/thelsing/knx.git
synced 2024-12-18 19:08:18 +01:00
7 lines
200 B
Python
7 lines
200 B
Python
import subprocess, os
|
|
|
|
read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True'
|
|
|
|
if read_the_docs_build:
|
|
subprocess.call('cd .. ; doxygen', shell=True)
|
|
html_extra_path = ['../build/html'] |