From a043fa13348aaa8452e44f786083b7cbd26286e6 Mon Sep 17 00:00:00 2001 From: Roman Khapov Date: Thu, 1 Aug 2024 20:16:02 +0500 Subject: [PATCH] Makefile: rename client to yp-client The name "client" is too general and therefore not very useful. Signed-off-by: Roman Khapov --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7ebd296..689fa0c 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ LDFLAGS=-ldflags "-X github.com/yezzey-gp/yproxy/pkg.GitRevision=${GIT_REVISION} build: mkdir -p devbin go build -pgo=auto -o devbin/yproxy $(LDFLAGS) ./cmd/yproxy - go build -o devbin/client ./cmd/client + go build -o devbin/yp-client ./cmd/client ####################### TESTS #######################