summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-18 12:55:39 -0600
committermo khan <mo@mokhan.ca>2025-07-18 12:55:39 -0600
commit466892ee541c5047de94112bcac5efc17b9d215b (patch)
tree0139bb8d29a445d99c719587a5614d05f17f48e8
parentfc15c2ad344c0e7fe6253ba171607ac269312ec3 (diff)
chore: fix *.go source file detection
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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)