We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 695db2a commit 760e448Copy full SHA for 760e448
src/Commands/QuerySubmodules.cs
@@ -26,7 +26,7 @@ public QuerySubmodules(string repo)
26
var rs = ReadToEnd();
27
28
var builder = new StringBuilder();
29
- var lines = rs.StdOut.Split(['r', '\n'], System.StringSplitOptions.RemoveEmptyEntries);
+ var lines = rs.StdOut.Split(['\r', '\n'], System.StringSplitOptions.RemoveEmptyEntries);
30
foreach (var line in lines)
31
{
32
var match = REG_FORMAT1().Match(line);
0 commit comments