From 60a6a8dcefaad99502500cfbe6f2cdc1136a9491 Mon Sep 17 00:00:00 2001 From: Alessio Treglia Date: Thu, 2 May 2019 17:30:29 +0100 Subject: [PATCH] Remove tools from go.sum deps (#4251) The go.sum target does not need to depend on tools to run successfully. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 726fd2f3f7..3f489ae474 100644 --- a/Makefile +++ b/Makefile @@ -108,7 +108,7 @@ go-mod-cache: go.sum @echo "--> Download go modules to local cache" @go mod download -go.sum: tools go.mod +go.sum: go.mod @echo "--> Ensure dependencies have not been modified" @go mod verify