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 <noreply@anthropic.com>
This commit is contained in:
M.V. Hutz
2026-01-10 16:38:19 -05:00
parent 997794eaa5
commit b3db983f62

3
.gitignore vendored
View File

@@ -9,6 +9,9 @@
*.so *.so
*.dylib *.dylib
# Build artifacts
lambda
# Test binary, built with `go test -c` # Test binary, built with `go test -c`
*.test *.test