From 643005e0857bd492a895f28ffe650b4d437f422a Mon Sep 17 00:00:00 2001 From: Segfault <5221072+Segfaultd@users.noreply.github.com> Date: Fri, 22 Nov 2024 09:54:50 +0100 Subject: [PATCH] fix: Makefile built binary name (#42) Update Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4b1633f..d489099 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ all: install .PHONY: install install: build @echo "--> installing eibc-client" - mv build/eibc $(GOPATH)/bin/eibc-client + mv build/eibc-client $(GOPATH)/bin/eibc-client .PHONY: build build: go.sum ## Compiles the eibc binary