fix: Remove unnecessary blank lines in mergeConflictManager.js

This commit is contained in:
Greg Jacobs
2026-01-26 16:18:53 -05:00
parent f7d928506a
commit 28f66ea0b7

View File

@@ -41,7 +41,7 @@ for (let i = 0; i < commands.length; i++) {
} catch (error) {
console.error(`\n✗ Failed at command: ${cmd}`);
console.error(`Exit code: ${error.status}`);
// If the merge command fails, open VS Code with the repository
if (cmd.startsWith('git merge')) {
console.log(`\nOpening VS Code to resolve merge conflicts...`);
@@ -51,7 +51,7 @@ for (let i = 0; i < commands.length; i++) {
console.error('Failed to open VS Code');
}
}
process.exit(1);
}
}