From 52843534417627ae818fe446e2cadcc9c4ea7215 Mon Sep 17 00:00:00 2001 From: Ryan D McGuire Date: Tue, 26 Nov 2024 20:22:07 -0500 Subject: [PATCH] Remove generate target from install --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ea2fc16..e99a8ec 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ build: generate go build -o bin/eia-client $(CLIENT_PKG) # Install the client command binary -install: generate +install: go install -v $(CLIENT_PKG) # Clean up generated files and build artifacts