Skip to content

Commit e51288a

Browse files
committed
make pagefind -> make search, easier to remember
1 parent 45b0d90 commit e51288a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/render.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
python -m pip install --upgrade pip
4343
4444
- name: Render PEPs
45-
run: make dirhtml pagefind JOBS=$(nproc)
45+
run: make dirhtml search JOBS=$(nproc)
4646

4747
# remove the .doctrees folder when building for deployment as it takes two thirds of disk space
4848
- name: Clean up files

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ build:
1313
- asdf plugin add uv
1414
- asdf install uv latest
1515
- asdf global uv latest
16-
- make dirhtml pagefind JOBS=$(nproc) BUILDDIR=_readthedocs/html
16+
- make dirhtml search JOBS=$(nproc) BUILDDIR=_readthedocs/html
1717

1818
sphinx:
1919
builder: dirhtml

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ dirhtml: BUILDER = dirhtml
4242
dirhtml: html
4343
mv $(BUILDDIR)/404/index.html $(BUILDDIR)/404.html
4444

45-
## pagefind to rebuild the search index
46-
.PHONY: pagefind
47-
pagefind: venv
45+
## search to rebuild the search index
46+
.PHONY: search
47+
search: venv
4848
$(VENVDIR)/bin/python3 -m pagefind --site $(BUILDDIR) --verbose
4949

5050
## linkcheck to check validity of links within PEP sources

0 commit comments

Comments
 (0)