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; } }