From 2b7caf25805c590cb3680232a0d162cf3babfc99 Mon Sep 17 00:00:00 2001 From: Nino Walker Date: Sat, 31 Aug 2024 04:52:33 +0200 Subject: [PATCH] [docs] fix make target (#430) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d4fdcf1b..f5f1b48f 100644 --- a/Makefile +++ b/Makefile @@ -7,9 +7,9 @@ help: @echo " docs : buidl sphinx documentation" docs: - PY_TREES_DISABLE_COLORS=1 sphinx-build -E -b html doc doc/html + PY_TREES_DISABLE_COLORS=1 sphinx-build -E -b html docs docs/html clean: - -rm -rf doc/html + -rm -rf docs/html .PHONY: docs clean