fix(parser/resultstatus): add newline in comment
All checks were successful
submodules sync / sync (push) Successful in 45s
build / build (push) Successful in 1m29s
build / trigger-build-image (push) Successful in 8s

This commit is contained in:
张泊明518370910136 2024-11-10 00:25:51 -05:00
parent 5bff234939
commit d8cead75b4
GPG Key ID: D47306D7062CDA9D

View File

@ -30,7 +30,7 @@ func (*ResultStatus) Run(results []stage.ExecutorResult, confAny any) (
if result.Status != stage.Status(envexec.StatusAccepted) {
score = 0
comment = fmt.Sprintf(
"Unexpected executor status: %s.", result.Status,
"Unexpected executor status: `%s`.\n", result.Status,
)
if conf.ForceQuitOnNotAccepted {
forceQuit = true