mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-21 22:34:05 +00:00
Fix invalid rules in .gitignore
`**node_modules` in a .gitignore is the same than `*node_modules` or `*****node_modules`. It matches every file whose name ends with `node_modules`, including `not_node_modules`. The intent here was obviously to have `**/node_modules` which is the same than just `node_modules`.
This commit is contained in:
parent
9475e609b8
commit
e5cfe844c9
4
.gitignore
vendored
4
.gitignore
vendored
@ -69,8 +69,8 @@ __pycache__/
|
|||||||
*$py.class
|
*$py.class
|
||||||
|
|
||||||
## Node
|
## Node
|
||||||
**node_modules
|
node_modules
|
||||||
**package-lock.json
|
package-lock.json
|
||||||
|
|
||||||
## Rustdoc GUI tests
|
## Rustdoc GUI tests
|
||||||
src/test/rustdoc-gui/src/**.lock
|
src/test/rustdoc-gui/src/**.lock
|
||||||
|
Loading…
Reference in New Issue
Block a user