From 8a22b202b29970b34d4c3b73f550917d60d22e4f Mon Sep 17 00:00:00 2001 From: Bhadra Date: Fri, 16 Jan 2026 12:48:37 +0530 Subject: [PATCH] fix: include go.sum in installation to fix analyze/status build Fixes #316 - The go.sum file was missing from the install file list, causing 'missing go.sum entry' errors when trying to build the Go tools (analyze, status) on systems without pre-built binaries. --- install.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/install.ps1 b/install.ps1 index ab18628..6ff6903 100644 --- a/install.ps1 +++ b/install.ps1 @@ -258,6 +258,7 @@ function Install-Mole { $filesToCopy = @( "mole.ps1" "go.mod" + "go.sum" "bin" "lib" "cmd"