From 682840476fd531f9150a1f86194ec710a00f37fe Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Mon, 4 Apr 2022 11:39:38 +0200 Subject: [PATCH] build: ignore generated go-tags file The `scripts/golangci.yml.buildtags.in` file is generated from the `Makefile`, there is no need to include it in the repository. By adding the file to the `.gitignore` list, the output of `git status` will not show the file anymore. Fixes: 8fb5739f2 "build: more flexible handling of go build tags; added ceph_preview" Signed-off-by: Niels de Vos --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 11ad010a8..a1bad3c1b 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ deploy/cephcsi/image/cephcsi # generated golangci-lint configuration scripts/golangci.yml +scripts/golangci.yml.buildtags.in