From 57d5e5b4b31076988713b4f65b042221c8dc50f7 Mon Sep 17 00:00:00 2001 From: Doug Date: Tue, 24 Mar 2026 19:45:07 +0000 Subject: [PATCH] Really fix the release script. --- Tools/Sources/Commands/CI/ReleaseToGithub.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/Sources/Commands/CI/ReleaseToGithub.swift b/Tools/Sources/Commands/CI/ReleaseToGithub.swift index 22b1f03c3..b1018d5c4 100644 --- a/Tools/Sources/Commands/CI/ReleaseToGithub.swift +++ b/Tools/Sources/Commands/CI/ReleaseToGithub.swift @@ -150,7 +150,7 @@ struct ReleaseToGitHub: AsyncParsableCommand { try await CI.run(.name("git"), ["reset", "--hard"]) try await CI.run(.name("git"), ["checkout", "main"]) try await CI.run(.name("git"), ["pull", "origin", "main"]) - try await CI.run(.name("git"), ["rebase", "currentBranch"]) + try await CI.run(.name("git"), ["rebase", currentBranch]) try await CI.gitPush()