Attempt to make this work

This commit is contained in:
Mark Wylde
2025-05-30 22:46:03 +01:00
parent 0bb118b1a2
commit e1be245c51

View File

@@ -122,7 +122,7 @@ export async function setupBranch(
// Verify the branch was created // Verify the branch was created
const currentBranch = await $`git branch --show-current`; const currentBranch = await $`git branch --show-current`;
const branchName = currentBranch.toString().trim(); const branchName = currentBranch.text().trim();
console.log(`Current branch after creation: ${branchName}`); console.log(`Current branch after creation: ${branchName}`);
if (branchName === newBranch) { if (branchName === newBranch) {