Skip to content

Commit

Permalink
Change docs to be compatible with Read the Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
calebzulawski committed Oct 13, 2019
1 parent 5fbee0f commit 0cd3ea4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/makefile
@@ -1,7 +1,7 @@
.PHONY: all clean

all:
python3 -m sphinx -b html source build
cd source && python3 -m sphinx -b html . ../build

clean:
rm -rf build doxygen
2 changes: 1 addition & 1 deletion doc/source/conf.py
Expand Up @@ -67,7 +67,7 @@

def run_doxygen(app):
try:
retcode = subprocess.call("doxygen", shell=True)
retcode = subprocess.call("cd .. && doxygen", shell=True)
if retcode < 0:
sys.stderr.write("doxygen terminated by signal %s" % (-retcode))
except OSError as e:
Expand Down

0 comments on commit 0cd3ea4

Please sign in to comment.