Skip to content

Commit edb097f

Browse files
ci: normalize real CRLF in appcast description (#254)
1 parent 0311ba7 commit edb097f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/update-appcast/Sources/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ struct UpdateAppcast: AsyncParsableCommand {
9999
}
100100

101101
if let description, !description.isEmpty {
102-
let description = description.replacingOccurrences(of: #"\r\n"#, with: "\n")
102+
let description = description.replacingOccurrences(of: "\r\n", with: "\n")
103103
let descriptionDoc: Document
104104
do {
105105
descriptionDoc = try Parsley.parse(description)

0 commit comments

Comments
 (0)