Skip to content

Commit bdff65a

Browse files
committed
enhance: supports to clone into a local folder with spaces (#2069)
Signed-off-by: leo <longshuang@msn.cn>
1 parent 4716124 commit bdff65a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/Clone.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public Clone(string ctx, string path, string url, string localName, string sshKe
1616
builder.Append(extraArgs).Append(' ');
1717
builder.Append(url).Append(' ');
1818
if (!string.IsNullOrEmpty(localName))
19-
builder.Append(localName);
19+
builder.Append(localName.Quoted());
2020

2121
Args = builder.ToString();
2222
}

0 commit comments

Comments
 (0)