From e1be245c51d5f14c70db91fc387d75893e75e0f7 Mon Sep 17 00:00:00 2001 From: Mark Wylde Date: Fri, 30 May 2025 22:46:03 +0100 Subject: [PATCH] Attempt to make this work --- src/github/operations/branch.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github/operations/branch.ts b/src/github/operations/branch.ts index e818da6..c525b6e 100644 --- a/src/github/operations/branch.ts +++ b/src/github/operations/branch.ts @@ -122,7 +122,7 @@ export async function setupBranch( // Verify the branch was created const currentBranch = await $`git branch --show-current`; - const branchName = currentBranch.toString().trim(); + const branchName = currentBranch.text().trim(); console.log(`Current branch after creation: ${branchName}`); if (branchName === newBranch) {