| 191 | } |
| 192 | |
| 193 | static void add_trailing_starstar_for_dir(struct strbuf *pat) |
| 194 | { |
| 195 | if (pat->len && is_dir_sep(pat->buf[pat->len - 1])) |
| 196 | strbuf_addstr(pat, "**"); |
| 197 | } |
| 198 | |
| 199 | static int prepare_include_condition_pattern(const struct key_value_info *kvi, |
| 200 | struct strbuf *pat, |
no test coverage detected