diff options
| author | Jeff Carr <[email protected]> | 2024-12-24 03:00:55 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-24 03:00:55 -0600 |
| commit | 778de10e871c5d25d9c746eb54f1752b7c124f6d (patch) | |
| tree | afe7411a5251f243ff185c55a921e7ae2cd23302 /doRedoGoMod.go | |
| parent | 2f7c1807a1e6fbc9c43c247c5374748ce0cecd79 (diff) | |
deprecate go specific stuff
Diffstat (limited to 'doRedoGoMod.go')
| -rw-r--r-- | doRedoGoMod.go | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/doRedoGoMod.go b/doRedoGoMod.go deleted file mode 100644 index a3cbf22..0000000 --- a/doRedoGoMod.go +++ /dev/null @@ -1,28 +0,0 @@ -package main - -// An app to submit patches for the 30 GO GUI repos - -func doRedoGoMod() { - // me.forge.RillRedoGoMod() - all := me.forge.Repos.SortByFullPath() - for all.Scan() { - repo := all.Next() - if err := repo.ValidGoSum(); err == nil { - continue - } - if err := repo.RunStrict([]string{"go-mod-clean"}); err != nil { - badExit(err) - } - } -} - -func doEraseGoMod() { - /* - var cmds [][]string - cmds = append(cmds, []string{"rm", "-f", "go.mod", "go.sum"}) - errs := me.forge.RillCmds(me.packs, cmds) - foreach x, y := range errs { - log.Info("EraseGoMod() error", x.GoPath, y) - } - */ -} |
