From b4e63d3bd6a62e13b9cb464726d279134219bf6d Mon Sep 17 00:00:00 2001 From: "Stephen Lewis (Burrows)" Date: Fri, 19 Apr 2024 08:44:59 -0700 Subject: [PATCH] Added missing newline to generate_downstream.go logs (#10484) --- .ci/magician/cmd/generate_downstream.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/magician/cmd/generate_downstream.go b/.ci/magician/cmd/generate_downstream.go index 58913d8f586c..8cdeeccd99e4 100644 --- a/.ci/magician/cmd/generate_downstream.go +++ b/.ci/magician/cmd/generate_downstream.go @@ -325,7 +325,7 @@ func createCommit(scratchRepo *source.Repo, commitMessage string, rnr ExecRunner } commitSha = strings.TrimSpace(commitSha) - fmt.Printf("Commit sha on the branch is: `%s`", commitSha) + fmt.Printf("Commit sha on the branch is: `%s`\n", commitSha) return commitSha, err }