Skip to content

Commit d85be5c

Browse files
Use the default build location for HTML files and ensure that directory is in
the list of files and directories to ignore.
1 parent 8d73c3c commit d85be5c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
*.pyc
22
build/
33
dist/
4+
doc/.build
45
cx_Oracle.egg-info/
56
MANIFEST

doc/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ clean:
2727

2828
html:
2929
mkdir -p .build/doctrees
30-
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) ../html
30+
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) .build/html
3131
@echo
32-
@echo "Build finished. The HTML pages are in ../html."
32+
@echo "Build finished. The HTML pages are in .build/html"
3333

3434
web:
3535
mkdir -p .build/web .build/doctrees

0 commit comments

Comments
 (0)