From e50e3ca84e5c92ff488cf848680df02f3769a2be Mon Sep 17 00:00:00 2001 From: Doug Date: Tue, 24 Mar 2026 17:06:44 +0000 Subject: [PATCH] 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 f4421b112..22b1f03c3 100644 --- a/Tools/Sources/Commands/CI/ReleaseToGithub.swift +++ b/Tools/Sources/Commands/CI/ReleaseToGithub.swift @@ -50,7 +50,7 @@ struct ReleaseToGitHub: AsyncParsableCommand { } // Bump the patch version using sed (preserves file formatting) - try await CI.run(.name("sed"), ["-i", "''", "'s/MARKETING_VERSION: \(currentVersion)/MARKETING_VERSION: \(newVersion)/g'", targetFilePath]) + try await CI.run(.name("sed"), ["-i", "", "s/MARKETING_VERSION: \(currentVersion)/MARKETING_VERSION: \(newVersion)/g", targetFilePath]) logger.info("Version updated from \(currentVersion) to \(newVersion)") try await CI.run(.name("xcodegen"))