From a34440d955488f9cbd7476891cf4e97d844c3bf9 Mon Sep 17 00:00:00 2001 From: lancebord Date: Thu, 12 Mar 2026 00:32:39 -0400 Subject: [PATCH] fix: makefile build needs to build in cmd dir --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 084ebac8..def64e07 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ all: clean build build: ${BINARY_NAME} ${BINARY_NAME}: - CGO_ENABLED=0 GOOS=linux GOARCH=amd64 ${GO} build -a -tags netgo -ldflags '-w -extldflags "-static"' -o $@ + CGO_ENABLED=0 GOOS=linux GOARCH=amd64 ${GO} build -a -tags netgo -ldflags '-w -extldflags "-static"' -o $@ ./cmd install: build install -Dm755 ${BINARY_NAME} ${DESTDIR}${PREFIX}/bin/${BINARY_NAME}