Skip to content

Commit

Permalink
fix: handle separator under linux (#2592)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxisam authored Oct 23, 2024
1 parent f1a5aee commit 80d38b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/RevEng.Core.60/ReverseEngineerScaffolder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace RevEng.Core
{
public class ReverseEngineerScaffolder : IReverseEngineerScaffolder
{
private static readonly string[] Separator = new string[] { "\r\n", "\r" };
private static readonly string[] Separator = new string[] { "\r\n", "\r", "\n" };

private readonly IDatabaseModelFactory databaseModelFactory;
private readonly IScaffoldingModelFactory factory;
Expand Down

0 comments on commit 80d38b6

Please sign in to comment.