enhance: supports to clone into a local folder with spaces (#2069)

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo
2026-01-27 10:04:49 +08:00
parent 4716124b9e
commit bdff65aa8f

View File

@@ -16,7 +16,7 @@ namespace SourceGit.Commands
builder.Append(extraArgs).Append(' ');
builder.Append(url).Append(' ');
if (!string.IsNullOrEmpty(localName))
builder.Append(localName);
builder.Append(localName.Quoted());
Args = builder.ToString();
}