summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rw-r--r--wit.go5
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 2413c56..01814e5 100644
--- a/Makefile
+++ b/Makefile
@@ -23,6 +23,7 @@ redomod:
clean:
rm -f *.pb.go
-rm -f go.*
+ go-mod-clean purge
package.pb.go: package.proto
autogenpb --proto package.proto
diff --git a/wit.go b/wit.go
index ebc3fc5..124404f 100644
--- a/wit.go
+++ b/wit.go
@@ -6,7 +6,6 @@ import (
"strings"
"go.wit.com/lib/fhelp"
- "go.wit.com/log"
)
func (m *Machine) IsInstalled(name string) bool {
@@ -127,11 +126,11 @@ func (all *Packages) AddIfNewer(p *Package) {
return
}
if v1.LessThan(v2) {
- log.Info("removing", v1, "using", v2)
+ // log.Info("removing", v1, "using", v2)
all.Delete(check)
all.Append(p)
} else {
- log.Info("keeping", v1, "got:", v2)
+ // log.Info("keeping", v1, "got:", v2)
}
}