-
Notifications
You must be signed in to change notification settings - Fork 409
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The ** pattern doesn't match files starting with dot symbol #841
Comments
I think that's the correct behaviour. Since the pattern is specified as a string literal, In order to match both, I think you'll have to use something like |
Unfortunately, |
How about |
Nope, the regex works the same as glob with two stars. I guess, the problem lies deeper, in the filesystem visiting code. |
That'd be |
@arrowd Did you manage to figure out what's wrong with the |
Not yet, but it is on my TODO. |
The problem stems from the default
Overriding it for my site fixes the problem. I don't think that default should be changed, as it might suddenly make VCS directories visible for users. |
Oh! So simple… Thank you for writing back! 👍 |
I have
data/.foo
file as well asdata/.hg
directory in my Hakyll project. The following rulecorrectly copies all files and directories recursively, except
.foo
and.hg
.The text was updated successfully, but these errors were encountered: