summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-12 18:59:16 -0600
committerJeff Carr <[email protected]>2024-12-12 18:59:16 -0600
commitc3e3dfd20952acfdf58d018cf16b3c2cd8bc2ae3 (patch)
tree96401352bb5589caa846598036de57408d6e4a92 /README.md
parentc0f80bc42e941fe61e99d042d0e488ac4921d87c (diff)
rename as go-mod-clean
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index bc22f4c..722171a 100644
--- a/README.md
+++ b/README.md
@@ -1,20 +1,20 @@
-# go-clean
+# go-mod-clean
This is a hack to experiement with trimming unused entries from the go.sum files.
Since go.sum files need to be recursively processed, this attempts to remove
unused entries. There are all sorts of real world reasons on why this
needs to be done sometimes.
-* go-clean tries to remove uneeded entries from the go.sum file.
-* You must run go-clean in ~/go/src for this to work.
+* go-mod-clean tries to remove uneeded entries from the go.sum file.
+* You must run go-mod-clean in ~/go/src for this to work.
-# Install go-clean
+# Install go-mod-clean
- go install go.wit.com/apps/go-clean@latest
+ go install go.wit.com/apps/go-mod-clean@latest
# How it works
-go-clean is very simple. It will run 'go build' with GO111MODULE=off. In this mode,
+go-mod-clean is very simple. It will run 'go build' with GO111MODULE=off. In this mode,
go will compile directly based on the 'import' paths. It simply parses the errors
from 'go build' and makes sure the appropriate entries are in the go.sum file.