mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2026-07-10 11:04:10 -04:00
ci: skip patches directory in wiki sync
This commit is contained in:
parent
49e304b1b4
commit
2d61980f53
1 changed files with 1 additions and 1 deletions
2
.github/scripts/sync-wiki.py
vendored
2
.github/scripts/sync-wiki.py
vendored
|
|
@ -24,7 +24,7 @@ def collect_all_files() -> list[tuple[Path, str]]:
|
||||||
files.append((src, "Home" if src.stem == "index" else src.stem))
|
files.append((src, "Home" if src.stem == "index" else src.stem))
|
||||||
|
|
||||||
for subdir in sorted(DOCS_DIR.iterdir()):
|
for subdir in sorted(DOCS_DIR.iterdir()):
|
||||||
if subdir.is_dir():
|
if subdir.is_dir() and subdir.name != "patches":
|
||||||
for src in from_dir(subdir):
|
for src in from_dir(subdir):
|
||||||
files.append((src, src.stem))
|
files.append((src, src.stem))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue