diff options
| author | Jeff Carr <[email protected]> | 2024-12-11 01:14:24 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-11 01:14:24 -0600 |
| commit | 875435bc025e3b07d2f4a3fed50e78b9be58390a (patch) | |
| tree | f355bb362e30f707f33d7534ccf6c714107503e1 /argv.go | |
| parent | b5a5732ead91ca963ca56341e8993c2c502345f5 (diff) | |
somewhat is starting to work
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 13 |
1 files changed, 4 insertions, 9 deletions
@@ -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 ` } |
