Skip to content

Commit

Permalink
go get ./... -> go mod tidy for update dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
rerost committed Sep 16, 2024
1 parent 4bef499 commit a9f72cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func (u *initializeProjectUsecase) InstallDeps(rootDir string, cfg InitConfig) e
return errors.WithStack(err)
}
}
err := invoke("go", "get", "./...")
err := invoke("go", "mod", "tidy")
if err != nil {
return errors.WithStack(err)
}
Expand Down

0 comments on commit a9f72cb

Please sign in to comment.