Skip to content

Commit 6cb1217

Browse files
committed
wrap
1 parent 5a50f4a commit 6cb1217

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

envbuilder.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -526,10 +526,10 @@ func Run(ctx context.Context, options Options) error {
526526
}
527527
image, err := executor.DoBuild(opts)
528528
if err != nil {
529-
return nil, err
529+
return nil, xerrors.Errorf("do build: %w", err)
530530
}
531531
if err := executor.DoPush(image, opts); err != nil {
532-
return nil, err
532+
return nil, xerrors.Errorf("do push: %w", err)
533533
}
534534
endStage("🏗️ Built image!")
535535

0 commit comments

Comments
 (0)