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
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