Skip to content

Commit c46ae12

Browse files
committed
Fix make links to output to docs/examples
Signed-off-by: Daniel Lim Wee Soong <weesoong.lim@gmail.com>
1 parent ea2317b commit c46ae12

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ env:
5454

5555
# Update fuzzer / minitest markdown links.
5656
tests-links:
57-
@mkdir -p $(MAKEDIR)/tests
58-
@cd $(MAKEDIR)/tests && find -name '*.md' -delete && find -type d -empty -delete
59-
@cd $(MAKEDIR)/tests && \
57+
@mkdir -p $(MAKEDIR)/examples
58+
@cd $(MAKEDIR)/examples && find -name '*.md' -delete && find -type d -empty -delete
59+
@cd $(MAKEDIR)/examples && \
6060
for I in $$(cd ../../tests/ ; find -name '*.md' | sort); do \
6161
F=$$(dirname $$I); D=$$(dirname $$F); N=$$(basename $$F); \
6262
S=../../tests/$$I; O=$$D/$$N.md; \
@@ -65,7 +65,7 @@ tests-links:
6565
fi; \
6666
ln -sf $$(realpath $$S --relative-to=$$D) $$O; \
6767
done
68-
@cd $(MAKEDIR)/tests && \
68+
@cd $(MAKEDIR)/examples && \
6969
for I in $$(cd ../../tests/ ; find -name '*.svg' -o -name '*.png' | sort); do \
7070
F=$$(dirname $$I); D=$$(dirname $$F); N=$$(basename $$I); \
7171
S=../../tests/$$I; O=$$D/$$N; \

0 commit comments

Comments
 (0)