From d51e01a5c1b58f74b155cb583b52b30f29d65acf Mon Sep 17 00:00:00 2001 From: CHAMI Rachid Date: Tue, 19 Sep 2023 16:17:02 +0100 Subject: [PATCH] chore: remove unnecessary go mod tidy (#2537) ## Overview The makefile target is already depending on `mod` before building the binary. Thus, we can remove the extra go mod tidy ## Checklist - [ ] New and updated code has appropriate documentation - [ ] New and updated code has new and/or updated testing - [ ] Required CI checks are passing - [ ] Visual proof for any user facing features like CLI or documentation updates - [ ] Linked issues closed with keywords --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index c02dd6a3ab..8ce978b864 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,6 @@ build: mod @cd ./cmd/celestia-appd @mkdir -p build/ @go build $(BUILD_FLAGS) -o build/ ./cmd/celestia-appd - @go mod tidy .PHONY: build ## install: Build and install the celestia-appd binary into the $GOPATH/bin directory.