From bb54d3ed62d40073f27f6f8a46f71cce35bad170 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 24 Dec 2024 04:58:44 -0600 Subject: [PATCH] still debugging --- main.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index c0a8a73..72a5b9b 100644 --- a/main.go +++ b/main.go @@ -86,7 +86,11 @@ func main() { end += "(version mismatch) " + actualp.Version + " " + version + " " } if actualp := me.forge.Machine.FindInstalledByName(p.Name); actualp != nil { - end += "(installed " + actualp.Version + ") " + if p.Version != actualp.Version { + end += "(installed " + actualp.Version + " vs " + p.Version + ") " + } else { + end += "(installed ok) " + } version = actualp.Version } if me.forge.Config.IsReadOnly(p.Name) {