Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
TimSC committed Dec 3, 2017
1 parent 5893066 commit 84732da
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,17 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
# import os
import os
import subprocess
# import sys
# sys.path.insert(0, os.path.abspath('.'))

import subprocess
subprocess.call('doxygen', shell=True)
read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True'

print (os.getcwd())

if read_the_docs_build:
subprocess.call('cd ..; doxygen', shell=True)

# -- General configuration ------------------------------------------------

Expand Down

0 comments on commit 84732da

Please sign in to comment.