From 51150f862cc5dd38bb94b199c0db8ff1468f0f95 Mon Sep 17 00:00:00 2001 From: Jacob Floyd Date: Fri, 15 Apr 2022 20:04:15 -0500 Subject: [PATCH] bugfix(k8s): add newline to init step output (#309) --- runtime/kubernetes/build.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/kubernetes/build.go b/runtime/kubernetes/build.go index 5023deaf..b93e88ad 100644 --- a/runtime/kubernetes/build.go +++ b/runtime/kubernetes/build.go @@ -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.