-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds support for folder/* patterns in .fleetignore (#2617)
As of now, the `folder/*` was not supported by Fleet. This PR adds support for it, giving the option to ignore folders (not files with a given name). For example: This folder structure: ``` root dir1 test file1 file2 file3 test file4 ``` with the following `.fleetignore` file: ``` test/* ``` would produce the following recource list: ``` root/file3 root/test root/file4 ``` `test` folder would be ignored but `test` file would not. Signed-off-by: Xavi Garcia <[email protected]>
- Loading branch information
Showing
2 changed files
with
224 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters