We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1e1a33 commit 4a537cdCopy full SHA for 4a537cd
API/addRepoApi.js
@@ -42,10 +42,13 @@ async function addRepoHandler(
42
}
43
44
if (cloneCheck) {
45
- const cloneStatus = await execPromisified(`git clone "${cloneUrl}"`, {
46
- cwd: repoPath,
47
- windowsHide: true,
48
- })
+ const cloneStatus = await execPromisified(
+ `git clone "${cloneUrl}" "${repoName}"`,
+ {
+ cwd: repoPath,
49
+ windowsHide: true,
50
+ }
51
+ )
52
.then(({ stdout, stderr }) => {
53
console.log(stdout);
54
console.log(stderr);
0 commit comments