Skip to content

Commit 097ed19

Browse files
committed
drop STDERR for nominal case
Signed-off-by: Jordan Keister <[email protected]>
1 parent 135969c commit 097ed19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

alpha/template/composite/builder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ func (cb *CustomBuilder) Build(ctx context.Context, reg image.Registry, dir stri
264264

265265
// custom template should output a valid FBC to STDOUT so we can
266266
// build the FBC just like all the other templates.
267-
v, err := cmd.CombinedOutput()
267+
v, err := cmd.Output()
268268
if err != nil {
269269
return fmt.Errorf("running command %q: %v: %v", cmd.String(), err, v)
270270
}

0 commit comments

Comments
 (0)