From 649a97a97cecf2e0a00c300e5e927b53d1f79305 Mon Sep 17 00:00:00 2001 From: Marvin Preuss Date: Tue, 28 Sep 2021 13:49:02 +0200 Subject: [PATCH] moves tools to own pkg dir --- Makefile | 2 +- tools.go => tools/tools.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename tools.go => tools/tools.go (84%) diff --git a/Makefile b/Makefile index bc68488..b18162f 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ coverage: .PHONY: install-tools install-tools: - go list -f '{{range .Imports}}{{.}} {{end}}' tools.go | xargs go install -v + go list -f '{{range .Imports}}{{.}} {{end}}' tools/tools.go | xargs go install -v .PHONY: readme readme: diff --git a/tools.go b/tools/tools.go similarity index 84% rename from tools.go rename to tools/tools.go index 3063562..ebafe0a 100644 --- a/tools.go +++ b/tools/tools.go @@ -1,6 +1,6 @@ -// +build tools +//go:build tools -package workgroups +package tools import ( _ "github.com/boumenot/gocover-cobertura"