summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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) {