1
0
Fork 0
mirror of synced 2024-07-26 18:11:13 -04:00

Merge branch 'dkm/patch-1'

This commit is contained in:
Anish Athalye 2021-10-25 14:39:24 -04:00
commit ac5793ceb5

View file

@ -197,7 +197,7 @@ When `glob: True`, Dotbot uses [glob.glob](https://docs.python.org/3/library/glo
| `[seq]` | matches any character in `seq` |
| `[!seq]` | matches any character not in `seq` |
However, due to the design of `glob.glob`, using a glob pattern such as `config/*`, will **not** match items that being with `.`. To specifically capture items that being with `.`, you will need to include the `.` in the pattern, like this: `config/.*`.
However, due to the design of `glob.glob`, using a glob pattern such as `config/*`, will **not** match items that begin with `.`. To specifically capture items that being with `.`, you will need to include the `.` in the pattern, like this: `config/.*`.
#### Example