summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-24 04:58:44 -0600
committerJeff Carr <[email protected]>2024-12-24 04:58:44 -0600
commitbb54d3ed62d40073f27f6f8a46f71cce35bad170 (patch)
tree84052d6ffaa68e22d31a9346190e232f1efd939e /main.go
parent6169b19c709f504dfc13f197c636d64b7dd57bfb (diff)
still debuggingv0.0.2
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 5 insertions, 1 deletions
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) {