fix: custom action error message format

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo 2024-11-05 12:24:33 +08:00
parent 680cdca28d
commit fdf30aa7cc
No known key found for this signature in database

View file

@ -43,7 +43,7 @@ namespace SourceGit.Commands
if (e.Data != null) if (e.Data != null)
{ {
outputHandler?.Invoke(e.Data); outputHandler?.Invoke(e.Data);
builder.Append(e.Data); builder.AppendLine(e.Data);
} }
}; };