-
-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Match
files_sub_directory
as a prefix (#1765)
Properly match `files_sub_directory` as a prefix instead of partial string matching. Before - If directory named "files_sub_directory" exists then all files matching "files_sub_directory" are selected. For example if files_sub_directory is set to "dir" and dir exists under the workspace directory then "mode/direct/file.yml" and "new_directory/f.yml" will be selected After - If directory named "files_sub_directory" exists then all files which names start with "files_sub_directory" are selected. For example if files_sub_directory is set to "dir" (or "./dir" or "dir/" or "./dir/") and dir exists under the workspace directory then "dir/file.yml" will be selected but not "new_directory/f.yml" and not "some/dir/f.yml"
- Loading branch information
Showing
3 changed files
with
4 additions
and
1 deletion.
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
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