mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-06-23 19:34:59 +00:00
Fixed regex preventing the reading of usernames containing dot characters in the LFS locks list.
This commit is contained in:
parent
5f4c1bb984
commit
8a0badf3e2
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ namespace SourceGit.Commands
|
||||||
{
|
{
|
||||||
public partial class LFS
|
public partial class LFS
|
||||||
{
|
{
|
||||||
[GeneratedRegex(@"^(.+)\s+(\w+)\s+\w+:(\d+)$")]
|
[GeneratedRegex(@"^(.+)\s+([\w.]+)\s+\w+:(\d+)$")]
|
||||||
private static partial Regex REG_LOCK();
|
private static partial Regex REG_LOCK();
|
||||||
|
|
||||||
class SubCmd : Command
|
class SubCmd : Command
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue