From cbda217d188786e0dfcc344474dbb58ca2e513d3 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Wed, 27 May 2026 17:41:19 -0400 Subject: [PATCH] chore: add compiled AniTrack binary to .gitignore The project's compiled binary (AniTrack) was not covered by existing gitignore patterns. Only platform-specific extensions like .exe, .dll, .so, and .dylib were ignored. Add the bare binary name to prevent the locally-built executable from appearing as an untracked file. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index bf3e724..a0ed865 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,4 @@ http-client.private.env.json # Build artifacts build/*.tar.gz +AniTrack