Skip to content

Commit 1a0f041

Browse files
sneakers-the-ratlwasser
authored andcommitted
correctly ignore _build directory
1 parent a749788 commit 1a0f041

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def docs_test(session):
8383
def _autobuild_cmd(posargs: list[str], output_dir = OUTPUT_DIR) -> list[str]:
8484
cmd = [SPHINX_AUTO_BUILD, *BUILD_PARAMETERS, str(SOURCE_DIR), str(output_dir), *posargs]
8585
for folder in AUTOBUILD_IGNORE:
86-
cmd.extend(["--ignore", f"*/{folder}/*"])
86+
cmd.extend(["--ignore", f'"{folder}"'])
8787
return cmd
8888

8989

0 commit comments

Comments
 (0)