From 5374ec06291883fd82b164ed8c072a24d131ee68 Mon Sep 17 00:00:00 2001 From: Oliver Gould Date: Mon, 18 Feb 2019 10:31:10 -0800 Subject: [PATCH] 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 --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index aa2ecf33a..d4bf70107 100644 --- a/.gitignore +++ b/.gitignore @@ -14,5 +14,5 @@ web/app/yarn-error.log .gorun .dep* .golangci-lint* -**.gogen* +**/*.gogen* **/*.swp