From 4b8ffcdd1ca1843d0eee3dd61e2843b282122f67 Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Tue, 6 Jan 2026 22:20:22 -0500 Subject: [PATCH] gitignore accidentally extracted distribution files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Prevent bin/ and lib/ in project root from showing up in git if the deploy script accidentally extracts to the wrong location. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 9c234c7..db7e041 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,7 @@ build # Ignore local configuration files run.yml + +# Ignore accidentally extracted distribution files in project root +/bin/ +/lib/