From e54815dbc35ffaf7bfa5c02b128ce6e355153046 Mon Sep 17 00:00:00 2001 From: Jordan Krage Date: Thu, 21 Mar 2024 09:06:49 -0500 Subject: [PATCH] remove gomods (#12525) --- GNUmakefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index be540e63ea2..6e61563316e 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -28,7 +28,12 @@ gomod: ## Ensure chainlink's go dependencies are installed. .PHONY: gomodtidy gomodtidy: gomods ## Run go mod tidy on all modules. - gomods tidy + go mod tidy + cd ./core/scripts && go mod tidy + cd ./integration-tests && go mod tidy + cd ./integration-tests/load && go mod tidy + cd ./dashboard-lib && go mod tidy + cd ./charts/chainlink-cluster && go mod tidy .PHONY: godoc godoc: ## Install and run godoc