Skip to content

Commit

Permalink
Update output message for go mod tidy
Browse files Browse the repository at this point in the history
Co-authored-by: Camila Macedo <[email protected]>
  • Loading branch information
dastergon and camilamacedo86 committed Feb 25, 2021
1 parent a56d4bf commit be89258
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/plugins/golang/v2/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ func (p *createAPISubcommand) PostScaffold() error {
return fmt.Errorf("unknown pattern %q", p.pattern)
}

err := util.RunCmd("Update go.mod", "go", "mod", "tidy")
err := util.RunCmd("Running go mod tidy", "go", "mod", "tidy")
if err != nil {
return err
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/plugins/golang/v3/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ func (p *createAPISubcommand) PostScaffold() error {
return fmt.Errorf("unknown pattern %q", p.pattern)
}

err := util.RunCmd("Update go.mod", "go", "mod", "tidy")
err := util.RunCmd("Running go mod tidy", "go", "mod", "tidy")
if err != nil {
return err
}
Expand Down

0 comments on commit be89258

Please sign in to comment.