Skip to content

Commit 011f525

Browse files
authored
fix: LFS locks do not show if user name contains . character (#902)
1 parent 5f4c1bb commit 011f525

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/LFS.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace SourceGit.Commands
77
{
88
public partial class LFS
99
{
10-
[GeneratedRegex(@"^(.+)\s+(\w+)\s+\w+:(\d+)$")]
10+
[GeneratedRegex(@"^(.+)\s+([\w.]+)\s+\w+:(\d+)$")]
1111
private static partial Regex REG_LOCK();
1212

1313
class SubCmd : Command

0 commit comments

Comments
 (0)