[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2025-03-30 08:51:24 +00:00
committed by GitHub
parent 64a77decfd
commit 67e85cabcb
4 changed files with 76 additions and 47 deletions

View File

@@ -67,15 +67,11 @@ export const cloneBitbucketRepository = async (
if (recurseSubmodules) {
cloneArgs.splice(4, 0, "--recurse-submodules");
}
await spawnAsync(
"git",
cloneArgs,
(data) => {
if (writeStream.writable) {
writeStream.write(data);
}
},
);
await spawnAsync("git", cloneArgs, (data) => {
if (writeStream.writable) {
writeStream.write(data);
}
});
writeStream.write(`\nCloned ${repoclone} to ${outputPath}: ✅\n`);
} catch (error) {
writeStream.write(`ERROR Clonning: ${error}: ❌`);