summaryrefslogtreecommitdiff
path: root/redoGoMod.go
diff options
context:
space:
mode:
Diffstat (limited to 'redoGoMod.go')
-rw-r--r--redoGoMod.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/redoGoMod.go b/redoGoMod.go
index ca9b536..2d58aa2 100644
--- a/redoGoMod.go
+++ b/redoGoMod.go
@@ -51,12 +51,6 @@ func redoGoMod(repo *gitpb.Repo) error {
return err
}
- // check to see if this is primitive
- repo.ParseGoSum()
- if repo.GetGoPrimitive() {
- return nil
- }
-
if result, err := goTidy(repo.FullPath); err != nil {
if tinyFixer(result) {
if _, err := goTidy(repo.FullPath); err != nil {
@@ -73,7 +67,6 @@ func redoGoMod(repo *gitpb.Repo) error {
// parse the go.mod and go.sum files
if repo.ParseGoSum() {
- // this is primitive
return nil
}