Reduce go mod download verbosity

This commit is contained in:
Deluan 2022-09-28 20:27:53 -04:00
parent 694968c607
commit 413292da6b
1 changed files with 1 additions and 1 deletions

View File

@ -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