mirror of
https://github.com/SabreTools/SabreTools.CommandLine.git
synced 2026-07-09 02:07:42 +00:00
Fix split method in custom help
This commit is contained in:
@@ -791,8 +791,8 @@ namespace SabreTools.CommandLine
|
||||
// If custom help text is defined
|
||||
if (CustomHelp != null)
|
||||
{
|
||||
CustomHelp = CustomHelp.Replace("\r\n", "\n");
|
||||
string[] customLines = CustomHelp.Split("\n");
|
||||
string customHelp = CustomHelp.Replace("\r\n", "\n");
|
||||
string[] customLines = customHelp.Split('\n');
|
||||
output.AddRange(customLines);
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user