From 3937619e2738a95470cd2e0649ed139997acc393 Mon Sep 17 00:00:00 2001 From: yujiezhang-ops Date: Wed, 5 Aug 2026 10:02:04 +0800 Subject: [PATCH] fix: restore frontend/dist/.keep so a fresh clone builds d876a7c deleted it, which breaks `go vet ./...` on any clean checkout: manifest_embed.go embeds `all:frontend/dist`, and that pattern has no match when the directory does not exist. main has been red since that push. The file is easy to lose because `vite build` empties dist/, so a `git add -A` afterwards stages the deletion. .gitignore already carries the `!frontend/dist/.keep` exception and a comment explaining this; nothing else is needed beyond putting the file back. --- frontend/dist/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 frontend/dist/.keep diff --git a/frontend/dist/.keep b/frontend/dist/.keep new file mode 100644 index 00000000..e69de29b