From 17d6eb83651f27a6ee5e43b26cbc096237654ed4 Mon Sep 17 00:00:00 2001 From: "Bruno P. Kinoshita" Date: Wed, 21 Sep 2022 16:19:16 +1200 Subject: [PATCH] Ignore the docs/build folder, fix sources location --- .gitignore | 3 +++ docs/Makefile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f6db543..360c552 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ # Ignore images *.png *.jpg + +docs/build/ + diff --git a/docs/Makefile b/docs/Makefile index 11efdb9..79dde9b 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -15,7 +15,7 @@ endif # Internal variables. PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_letter = -D latex_paper_size=letter -ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source +ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) sources # the i18n builder cannot share the environment and doctrees with the others I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source -- GitLab