How do I exclude a folder? #658
Answered
by
geoffreymcgill
Ravencentric
asked this question in
Q&A
-
my reype.yml url: example.com
input: ./docs
exclude:
- "docs/hidden/"
branding:
title: The Wiki
edit:
repo: "https://github.com/owner/repo/edit/"
base: /docs/
branch: "master"
label: "Edit this page" Despite the above, I get the following errrors:
|
Beta Was this translation helpful? Give feedback.
Answered by
geoffreymcgill
Nov 23, 2023
Replies: 1 comment 1 reply
-
Hi @Ravencentric, The exclude:
- "hidden/" Hope this helps. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Ravencentric
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @Ravencentric,
The
exclude
path is relative to theinput
, so I believe you just need to revise yourexclude
to the following:Hope this helps.