We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1eebdd9 commit 134ededCopy full SHA for 134eded
Sources/Swiftly/Swiftly.swift
@@ -100,14 +100,14 @@ extension SwiftlyCommand {
100
101
return {
102
if shouldUpdateSwiftly {
103
- let errorMessage = """
+ let updateMessage = """
104
-----------------------------
105
A new release of swiftly is available
106
Please run `swiftly self-update` to update.
107
-----------------------------\n
108
"""
109
110
- if let data = errorMessage.data(using: .utf8) {
+ if let data = updateMessage.data(using: .utf8) {
111
FileHandle.standardError.write(data)
112
}
113
0 commit comments