From b3db983f62aec7f3e2341367cb4198c54eab88e8 Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Sat, 10 Jan 2026 16:38:19 -0500 Subject: [PATCH] fix: add lambda binary to .gitignore Adds the lambda binary to .gitignore to prevent accidentally committing the build artifact. Previously only *.exe was ignored, which didn't cover the Unix binary name. Co-Authored-By: Claude Sonnet 4.5 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 71b2ceb..8ea5372 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,9 @@ *.so *.dylib +# Build artifacts +lambda + # Test binary, built with `go test -c` *.test