diff options
author | Vincent Ambo <mail@tazj.in> | 2022-04-26T09·21+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-04-26T09·25+0000 |
commit | 96aea320846d3d0d61e9e00d85f58a3efe3f9f82 (patch) | |
tree | 23d207bf4de15b4d55bda23d7f8a6969008f268b /ops/besadii/main.go | |
parent | 404d92356d9c41a19a29dacb771906a0f95dff96 (diff) |
fix(ops/besadii): Fix output formatting for non-CL builds r/3991
Change-Id: Ie9ffb2d287f6c8a1e3ae45a7ad6671b9b8fa9c8a Reviewed-on: https://cl.tvl.fyi/c/depot/+/5505 Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Reviewed-by: asmundo <asmundo@gmail.com>
Diffstat (limited to 'ops/besadii/main.go')
-rw-r--r-- | ops/besadii/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/besadii/main.go b/ops/besadii/main.go index e22dbb1e484e..412ae3a73bea 100644 --- a/ops/besadii/main.go +++ b/ops/besadii/main.go @@ -475,7 +475,7 @@ func postCommandMain(cfg *config) { // If these variables are unset, but the hook was invoked, the // build was most likely for a branch and not for a CL - no status // needs to be reported back to Gerrit! - fmt.Println("This isn't a %s build, nothing to do. Have a nice day!", cfg.GerritChangeName) + fmt.Printf("This isn't a %s build, nothing to do. Have a nice day!\n", cfg.GerritChangeName) return } |