From adfb1961ae20f51c6d8cc02d42932e7b5cd7b9e9 Mon Sep 17 00:00:00 2001 From: null Date: Tue, 18 Aug 2026 14:56:29 -0500 Subject: [PATCH] fix: stop committing bin/, which is build output that looks like source MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Eclipse/Buildship writes a duplicate copy of every .kt file into bin/main and bin/test for the pure-JVM modules. Fourteen of them reached the previous commit, because a directory full of Kotlin files is the one kind of build output that does not look like build output in a `git status`. Removed from the index and ignored. Nothing was lost — every file under bin/ was a copy of one under src/. --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index a04f5bc..b794da1 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,10 @@ play-service-account*.json # Gradle and Android build output .gradle/ build/ +# Eclipse/Buildship writes duplicate sources here for the pure-JVM modules. It +# is build output that looks exactly like source, and it slipped into a commit +# once before this line existed. +bin/ captures/ .cxx/ *.apk