Skip to content

Commit d60ad6b

Browse files
committed
fix: git fetch args in git clone procedure
1 parent 7ad1c6e commit d60ad6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/git.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export async function cloneRepo(repoUrl: string, serviceId: string) {
2222
"--branch": "main",
2323
});
2424
await git.cwd(repoPath);
25-
await git.fetch("--tags");
25+
await git.fetch(["--tags"]);
2626
return repoPath;
2727
}
2828

0 commit comments

Comments
 (0)