refactor(bitbucket): remove debug console logs from repository cloning process

- Removed console logs for clone URL and repository information to clean up the output during the cloning process.
This commit is contained in:
Mauricio Siu
2025-09-27 02:55:42 -06:00
parent 6bd5b1f71f
commit 5fdf82a27f

View File

@@ -104,8 +104,6 @@ export const cloneBitbucketRepository = async (
await recreateDirectory(outputPath); await recreateDirectory(outputPath);
const repoclone = `bitbucket.org/${bitbucketOwner}/${bitbucketRepository}.git`; const repoclone = `bitbucket.org/${bitbucketOwner}/${bitbucketRepository}.git`;
const cloneUrl = getBitbucketCloneUrl(bitbucket, repoclone); const cloneUrl = getBitbucketCloneUrl(bitbucket, repoclone);
console.log("cloneUrl", cloneUrl);
console.log("repoclone", repoclone);
try { try {
writeStream.write(`\nCloning Repo ${repoclone} to ${outputPath}: ✅\n`); writeStream.write(`\nCloning Repo ${repoclone} to ${outputPath}: ✅\n`);
const cloneArgs = [ const cloneArgs = [