From 413292da6bd38e700fd974fd217008d36d60682c Mon Sep 17 00:00:00 2001 From: Deluan Date: Wed, 28 Sep 2022 20:27:53 -0400 Subject: [PATCH] Reduce go mod download verbosity --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d239f8f56..9b59c45e1 100644 --- a/Makefile +++ b/Makefile @@ -111,7 +111,7 @@ release: download-deps: @echo Downloading Go dependencies... - @go mod download -x + @go mod download @go mod tidy # To revert any changes made by the `go mod download` command .PHONY: download-deps