We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
TLDR: dotfiles are ignored in exclude option, I believe the bug is here:
exclude
pronto/lib/pronto/config.rb
Line 49 in f5feefa
and changing it to Dir.glob(path.tos, File::FNM_DOTMATCH)
Dir.glob(path.tos, File::FNM_DOTMATCH)
According to: https://stackoverflow.com/questions/11385795/how-to-list-directory-contents-including-dotfiles-but-not-and
I have the following structure:
.buildkite/src/ package.json index.js .eslintrc.js .eslintrc.json packaage.json
And the following config:
all: exclude: - ".buildkite/**/*"
However, dotfile changes are still getting picked up by pronto.
pronto
The text was updated successfully, but these errors were encountered:
No branches or pull requests
TLDR: dotfiles are ignored in
exclude
option, I believe the bug is here:pronto/lib/pronto/config.rb
Line 49 in f5feefa
and changing it to
Dir.glob(path.tos, File::FNM_DOTMATCH)
According to: https://stackoverflow.com/questions/11385795/how-to-list-directory-contents-including-dotfiles-but-not-and
Steps to reproduce
I have the following structure:
And the following config:
However, dotfile changes are still getting picked up by
pronto
.The text was updated successfully, but these errors were encountered: