From 5819a2e4ab0c9970879d4f167f86ccabcc0e8e72 Mon Sep 17 00:00:00 2001 From: dangotbanned <125183946+dangotbanned@users.noreply.github.com> Date: Tue, 24 Dec 2024 12:25:13 +0000 Subject: [PATCH] ci: remove unused `--parents` option https://ss64.com/bash/mkdir.html We would want to see an error if `doc/` didn't exist. The docs wouldn't build as all the content is in that directory. Working on migrating to a cross-platform shell that doesn't require this option anyway https://www.nushell.sh/commands/docs/mkdir.html --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7bb051b35..52fb11b0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -179,7 +179,7 @@ clean-all-win = [ "if exist doc\\_images rd /s /q doc\\_images", ] build-html = [ - "mkdir -p doc/_images", + "mkdir doc/_images", "sphinx-build -b html -d doc/_build/doctrees doc doc/_build/html", ] build-html-win = [