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:
Oliver Gould 2019-02-18 10:31:10 -08:00 committed by GitHub
parent 1df1683b6a
commit 5374ec0629
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
.gitignore vendored
View File

@ -14,5 +14,5 @@ web/app/yarn-error.log
.gorun
.dep*
.golangci-lint*
**.gogen*
**/*.gogen*
**/*.swp