Skip to content

Commit ee55f0b

Browse files
chore: lint
1 parent 21946a0 commit ee55f0b

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Sources/Swiftly/Swiftly.swift

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,20 +110,19 @@ extension SwiftlyCommand {
110110

111111
return {
112112
if let swiftlyRelease = try? await ctx.httpClient.getCurrentSwiftlyRelease(),
113-
swiftlyRelease.swiftlyVersion > SwiftlyCore.version
113+
swiftlyRelease.swiftlyVersion > SwiftlyCore.version
114114
{
115115
let updateMessage = """
116116
-----------------------------
117117
A new release of swiftly is available.
118118
Please run `swiftly self-update` to update.
119119
-----------------------------\n
120120
"""
121-
121+
122122
if let data = updateMessage.data(using: .utf8) {
123123
FileHandle.standardError.write(data)
124124
}
125125
}
126126
}
127-
128127
}
129128
}

Sources/Swiftly/Use.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ struct Use: SwiftlyCommand {
6464
defer {
6565
versionUpdateReminder()
6666
}
67-
67+
6868
var config = try await Config.load(ctx)
6969

7070
// This is the bare use command where we print the selected toolchain version (or the path to it)

0 commit comments

Comments
 (0)