Fix the release script.

This commit is contained in:
Doug
2026-03-24 17:06:44 +00:00
parent 79db8582cf
commit e50e3ca84e

View File

@@ -50,7 +50,7 @@ struct ReleaseToGitHub: AsyncParsableCommand {
} }
// Bump the patch version using sed (preserves file formatting) // 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)") logger.info("Version updated from \(currentVersion) to \(newVersion)")
try await CI.run(.name("xcodegen")) try await CI.run(.name("xcodegen"))