Skip to content

Commit

Permalink
fix build script not working in action
Browse files Browse the repository at this point in the history
  • Loading branch information
libotony committed Jul 26, 2024
1 parent 5f03922 commit 1b5bbe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/build/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func ExpandPackagesNoVendor(patterns []string) []string {
}
if expand {
cmd := GoTool("list", patterns...)
out, err := cmd.CombinedOutput()
out, err := cmd.Output()
if err != nil {
log.Fatalf("package listing failed: %v\n%s", err, string(out))
}
Expand Down

0 comments on commit 1b5bbe9

Please sign in to comment.