Skip to content
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

Fix: Match files_sub_directory as a prefix #1765

Merged

Commits on Aug 22, 2022

  1. 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"
    giner committed Aug 22, 2022
    Configuration menu
    Copy the full SHA
    e3666a1 View commit details
    Browse the repository at this point in the history