From 4afa6c6b6bec7c8d4916da5203a2e6b7621686d3 Mon Sep 17 00:00:00 2001 From: Alex Johnson Date: Wed, 18 Sep 2024 10:12:44 -0400 Subject: [PATCH] chore: stop building slinky (#755) --- Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 24411c52c..d89ae866e 100644 --- a/Makefile +++ b/Makefile @@ -52,10 +52,8 @@ BUILD_TAGS := -X github.com/skip-mev/connect/v2/cmd/build.Build=$(TAG) ############################################################################### build: tidy - go build -ldflags="$(BUILD_TAGS)" \ + @go build -ldflags="$(BUILD_TAGS)" \ -o ./build/ ./... - go build -ldflags="$(BUILD_TAGS)" \ - -o ./build/slinky ./cmd/connect run-oracle-client: build @./build/client --host localhost --port 8080 @@ -245,7 +243,6 @@ proto-update-deps: .PHONY: proto-all proto-gen proto-pulsar-gen proto-format proto-lint proto-check-breaking proto-update-deps - ############################################################################### ### Formatting ### ###############################################################################