Skip to content

Commit 5612d72

Browse files
committedAug 23, 2015
depl
1 parent b54f994 commit 5612d72

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎doc/conf.py

+4
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,10 @@ def run_doxygen(folder):
142142
"""Run the doxygen make command in the designated folder."""
143143
try:
144144
retcode = subprocess.call("cd %s; make doxygen" % folder, shell=True)
145+
retcode = subprocess.call("rm -rf _build/html/doxygen", shell=True)
146+
retcode = subprocess.call("mkdir _build", shell=True)
147+
retcode = subprocess.call("mkdir _build/html", shell=True)
148+
retcode = subprocess.call("cp -rf doxygen/html _build/html/doxygen", shell=True)
145149
if retcode < 0:
146150
sys.stderr.write("doxygen terminated by signal %s" % (-retcode))
147151
except OSError as e:

0 commit comments

Comments
 (0)
Please sign in to comment.