diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/generate-bindata.go | 1 | ||||
-rw-r--r-- | build/generate-emoji.go | 1 | ||||
-rw-r--r-- | build/generate-gitignores.go | 1 | ||||
-rw-r--r-- | build/generate-licenses.go | 1 | ||||
-rw-r--r-- | build/gocovmerge.go | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/build/generate-bindata.go b/build/generate-bindata.go index fa1669fcf9..efd172f779 100644 --- a/build/generate-bindata.go +++ b/build/generate-bindata.go @@ -2,6 +2,7 @@ // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. +//go:build ignore // +build ignore package main diff --git a/build/generate-emoji.go b/build/generate-emoji.go index c97d865bdc..da4e12373c 100644 --- a/build/generate-emoji.go +++ b/build/generate-emoji.go @@ -3,6 +3,7 @@ // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. +//go:build ignore // +build ignore package main diff --git a/build/generate-gitignores.go b/build/generate-gitignores.go index 846bb07636..d0b972e803 100644 --- a/build/generate-gitignores.go +++ b/build/generate-gitignores.go @@ -1,3 +1,4 @@ +//go:build ignore // +build ignore package main diff --git a/build/generate-licenses.go b/build/generate-licenses.go index 9dd13adf9a..4009a0351d 100644 --- a/build/generate-licenses.go +++ b/build/generate-licenses.go @@ -1,3 +1,4 @@ +//go:build ignore // +build ignore package main diff --git a/build/gocovmerge.go b/build/gocovmerge.go index 65d6f2cd6c..b38cf5ea3d 100644 --- a/build/gocovmerge.go +++ b/build/gocovmerge.go @@ -6,6 +6,7 @@ // gocovmerge takes the results from multiple `go test -coverprofile` runs and // merges them into one profile +//go:build ignore // +build ignore package main |