diff options
| author | Jeff Carr <[email protected]> | 2024-12-24 04:58:44 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-24 04:58:44 -0600 |
| commit | bb54d3ed62d40073f27f6f8a46f71cce35bad170 (patch) | |
| tree | 84052d6ffaa68e22d31a9346190e232f1efd939e | |
| parent | 6169b19c709f504dfc13f197c636d64b7dd57bfb (diff) | |
still debuggingv0.0.2
| -rw-r--r-- | main.go | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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) { |
