diff --git a/src/infra/update-runner.ts b/src/infra/update-runner.ts index e39380c864b..a746e4902bc 100644 --- a/src/infra/update-runner.ts +++ b/src/infra/update-runner.ts @@ -636,7 +636,7 @@ export async function runGatewayUpdate(opts: UpdateRunnerOptions = {}): Promise< const abortResult = await runCommand(["git", "-C", gitRoot, "rebase", "--abort"], { cwd: gitRoot, timeoutMs, - }); + }).catch(() => ({ stdout: "", stderr: "rebase --abort failed", code: -1 })); steps.push({ name: "git rebase --abort", command: "git rebase --abort",