Skip to content

Commit 8f6689a

Browse files
committed
fixup! put checkfile in tools, not out
1 parent 0f9051a commit 8f6689a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1501,13 +1501,13 @@ tools/.manpagelintstamp: doc/node.1 doc/api/cli.md tools/doc/node_modules
15011501
@if [ "$(shell $(node_use_openssl_and_icu))" != "true" ]; then \
15021502
echo "Skipping $< verification (no crypto and/or no ICU)"; \
15031503
else \
1504-
$(RM) -r out/doc/.manpagecheck && \
1504+
$(RM) -r tools/doc/.manpagecheck && \
15051505
$(call available-node, \
15061506
$(DOC_KIT) generate \
15071507
-v $(VERSION) \
15081508
--config-file tools/doc/man-page.doc-kit.config.mjs \
15091509
) \
1510-
if ! diff -u $< out/doc/.manpagecheck/node.1; then \
1510+
if ! diff -u $< tools/doc/.manpagecheck/node.1; then \
15111511
echo '$< is out of date; run `make node.1` to regenerate it.' >&2; \
15121512
exit 1; \
15131513
fi; \

tools/doc/man-page.doc-kit.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default {
1212

1313
global: {
1414
input: [fromRoot('doc/api/cli.md')],
15-
output: fromRoot('out/doc/.manpagecheck'),
15+
output: fromRoot('tools/doc/.manpagecheck'),
1616

1717
// Point every loadable URL at its local file so no network request is made.
1818
changelog: fromRoot('CHANGELOG.md'),

0 commit comments

Comments
 (0)