Skip to content

Commit fdf30aa

Browse files
committed
fix: custom action error message format
Signed-off-by: leo <[email protected]>
1 parent 680cdca commit fdf30aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/ExecuteCustomAction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static void Run(string repo, string file, string args, Action<string> out
4343
if (e.Data != null)
4444
{
4545
outputHandler?.Invoke(e.Data);
46-
builder.Append(e.Data);
46+
builder.AppendLine(e.Data);
4747
}
4848
};
4949

0 commit comments

Comments
 (0)