Skip to content

Commit 0cf5ca9

Browse files
committed
fix(clone): change path to use fsPath
1 parent 74692e8 commit 0cf5ca9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/clone.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const clone = async () => {
3535
if (!selectFolder?.length)
3636
return showUserMessage('Warn', 'Aborted as no folder was selected');
3737

38-
const path = selectFolder[0].path;
38+
const path = selectFolder[0].fsPath;
3939
const repoName = parsedUrl.pathname.split('/')[2].replace('.git', '');
4040

4141
const newRepoName = await window.showInputBox({

0 commit comments

Comments
 (0)