Skip to content

Commit

Permalink
Merge pull request #172 from nao1215/nchika/issue-171
Browse files Browse the repository at this point in the history
Fix: check sub command print incorrect path.
  • Loading branch information
nao1215 authored Sep 10, 2024
2 parents d8ef07e + f741a8d commit afe73b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func doCheck(pkgs []goutil.Package, cpus int) int {
v := <-ch
if v.err == nil {
print.Info(fmt.Sprintf(countFmt+" %s (%s)",
i+1, len(pkgs), v.pkg.ModulePath, v.pkg.VersionCheckResultStr()))
i+1, len(pkgs), v.pkg.ImportPath, v.pkg.VersionCheckResultStr()))
} else {
result = 1
print.Err(fmt.Errorf(countFmt+"%s", i+1, len(pkgs), v.err.Error()))
Expand Down

0 comments on commit afe73b1

Please sign in to comment.