From 3836574cce70c2d5f4b640b2f2fe85fdb20f2314 Mon Sep 17 00:00:00 2001 From: Ethan Chiu Date: Wed, 8 Jul 2020 10:52:36 -0400 Subject: [PATCH] Fix period --- src/Runner.Worker/Handlers/ScriptHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Runner.Worker/Handlers/ScriptHandler.cs b/src/Runner.Worker/Handlers/ScriptHandler.cs index 24a9947c5..051cd5fc7 100644 --- a/src/Runner.Worker/Handlers/ScriptHandler.cs +++ b/src/Runner.Worker/Handlers/ScriptHandler.cs @@ -291,7 +291,7 @@ namespace GitHub.Runner.Worker.Handlers // Error if (exitCode != 0) { - ExecutionContext.Error($"Process completed with exit code {exitCode}"); + ExecutionContext.Error($"Process completed with exit code {exitCode}."); ExecutionContext.Result = TaskResult.Failed; } }