From 5031d08488665e7d19395193fd18022b168cf2da Mon Sep 17 00:00:00 2001 From: kim201212 Date: Tue, 22 Oct 2024 07:43:36 +0000 Subject: [PATCH] feat(Makefile): Add build mod tasks to Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e95d6e48..ffdeaa96 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ build: mod ## Build the story client. @go build -o build/story ./client .PHONY: mod -mod: ## mod: Update all go.mod files. +mod: ## Update all go.mod files. @go mod tidy ###############################################################################