mirror of https://github.com/linkerd/linkerd2.git
gitignore: Fix invalid glob (#2314)
66070c26
introduced an invalid glob, causing tools like rg(1) to emit
warnings like:
./.gitignore: line 17: error parsing glob '**.gogen*': invalid use of **; must be one path component
This commit is contained in:
parent
1df1683b6a
commit
5374ec0629
|
@ -14,5 +14,5 @@ web/app/yarn-error.log
|
|||
.gorun
|
||||
.dep*
|
||||
.golangci-lint*
|
||||
**.gogen*
|
||||
**/*.gogen*
|
||||
**/*.swp
|
||||
|
|
Loading…
Reference in New Issue