Skip to content

Commit 9adaab9

Browse files
fix: change swiftly name to lowercase
1 parent ddac17e commit 9adaab9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/build-swiftly-release/BuildSwiftlyRelease.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ struct BuildSwiftlyRelease: AsyncParsableCommand {
451451
try runProgram("productbuild", "--synthesize", "--package", pkgFile.path, distFile.path)
452452

453453
var distFileContents = try String(contentsOf: distFile, encoding: .utf8)
454-
distFileContents = distFileContents.replacingOccurrences(of: "<choices-outline>", with: "<title>Swiftly</title><domains enable_anywhere=\"false\" enable_currentUserHome=\"true\" enable_localSystem=\"false\"/><choices-outline>")
454+
distFileContents = distFileContents.replacingOccurrences(of: "<choices-outline>", with: "<title>swiftly</title><domains enable_anywhere=\"false\" enable_currentUserHome=\"true\" enable_localSystem=\"false\"/><choices-outline>")
455455
try distFileContents.write(to: distFile, atomically: true, encoding: .utf8)
456456

457457
if let cert = cert {

0 commit comments

Comments
 (0)