From 8141bfb3becc55486f7a1067a4772f3917e98444 Mon Sep 17 00:00:00 2001 From: aalu1418 <50029043+aalu1418@users.noreply.github.com> Date: Tue, 6 Feb 2024 08:02:36 -0700 Subject: [PATCH] standardize make gomodtidy --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index ee50cebf..de739ac2 100644 --- a/Makefile +++ b/Makefile @@ -122,7 +122,7 @@ build-go-integration-tests: cd integration-tests/ && go build ./... .PHONY: format-go -format-go: format-go-fmt format-go-mod-tidy +format-go: format-go-fmt gomodtidy .PHONY: format-go-fmt format-go-fmt: @@ -130,8 +130,8 @@ format-go-fmt: cd ./ops && go fmt ./... cd ./integration-tests && go fmt ./... -.PHONY: format-go-mod-tidy -format-go-mod-tidy: +.PHONY: gomodtidy +gomodtidy: go mod tidy cd ./ops && go mod tidy cd ./integration-tests && go mod tidy