From 466892ee541c5047de94112bcac5efc17b9d215b Mon Sep 17 00:00:00 2001 From: mo khan Date: Fri, 18 Jul 2025 12:55:39 -0600 Subject: chore: fix *.go source file detection --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a6795d1c..654b9cf3 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ setup: mise install mise exec go -- go install github.com/xlgmokha/minit@latest -$(AUTHZD_BIN): $(shell find src -name "*.go" 2>/dev/null) go.sum +$(AUTHZD_BIN): $(shell find . -name "*.go" 2>/dev/null) go.sum @go build -o $(AUTHZD_BIN) ./cmd/authzd/main.go build: $(AUTHZD_BIN) -- cgit v1.2.3