From d428c4928e0545e85b7d75c76f8e2b23d1163091 Mon Sep 17 00:00:00 2001 From: Seth Johnson Date: Sat, 18 Jul 2026 16:09:57 -0400 Subject: [PATCH] chore: gitignore root-level controller build binary go build ./cmd/controller from the repo root drops the binary as ./controller, which was not covered by the existing /cmd/controller/controller rule. Co-Authored-By: Claude --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 53b5e25..648aac1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # Binaries (in root or cmd folder) /only-fan-controller /smart-fan-controller +/controller /cmd/controller/controller *.exe