summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go13
1 files changed, 4 insertions, 9 deletions
diff --git a/argv.go b/argv.go
index f5da074..6d4b85f 100644
--- a/argv.go
+++ b/argv.go
@@ -17,15 +17,10 @@ func (args) Version() string {
func (a args) Description() string {
return `
-This will:
+go-clean will try to verify your go.* files are using the newest package versions
-* Remove your existing go.mod and go.sum files.
-* Run 'go mod init' and 'go mod tidy'
-* Trim your 'go.sum' file of missing entries
-* Test that your binary still builds with 'go build'
- (testing can only be done if you are working from ~/go/src)
-
-* This tool is used by forge to also identify golang 'primative' libraries which
- are libraries that are completely cleanly implemented and self-defined.
+* Recreate go.* with 'go mod init' and 'go mod tidy'
+* Check that the most recent master branch versions are used
+* Try to trim go.sum of non-existent entries
`
}