Skip to content

Commit

Permalink
bugfix(k8s): add newline to init step output
Browse files Browse the repository at this point in the history
  • Loading branch information
cognifloyd committed Apr 14, 2022
1 parent c091a57 commit 40e1b36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/kubernetes/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
func (c *client) InspectBuild(ctx context.Context, b *pipeline.Build) ([]byte, error) {
c.Logger.Tracef("inspecting build pod for pipeline %s", b.ID)

output := []byte(fmt.Sprintf("> Inspecting pod for pipeline %s", b.ID))
output := []byte(fmt.Sprintf("> Inspecting pod for pipeline %s\n", b.ID))

// TODO: The environment gets populated in AssembleBuild, after InspectBuild runs.
// But, we should make sure that secrets can't be leaked here anyway.
Expand Down

0 comments on commit 40e1b36

Please sign in to comment.