From 6a032c74db4eb617b5d910df8b807b7b941a2d85 Mon Sep 17 00:00:00 2001 From: Sergey Kozyrenko Date: Fri, 17 Jul 2026 15:44:43 +0700 Subject: [PATCH] chore: ignore the installer's log.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `cmd/installer/wizard/logger` opens log.json from its init(), so importing the package is enough to create one in the process's working directory. Running `go test ./cmd/installer/...` therefore drops a log.json into every package directory it runs from — four of them were sitting untracked in the tree, one step away from an accidental `git add -A`. Co-Authored-By: Claude Opus 4.8 --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 557b191f..90be16d0 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ backend/tmp backend/build backend/vendor +backend/cmd/installer/**/log.json frontend/coverage frontend/dist