Add something swiftlint can complain about

This commit is contained in:
Sven Weidauer 2020-12-30 14:34:48 +01:00
parent 2e13ed6758
commit b7a93fc1de

View file

@ -76,8 +76,8 @@ public final class MakeColors: ParsableCommand, Context {
if let output = output {
return URL(fileURLWithPath: output)
} else {
let basename = URL(fileURLWithPath: input).deletingPathExtension().lastPathComponent
return URL(fileURLWithPath: basename).appendingPathExtension(`extension`)
let b = URL(fileURLWithPath: input).deletingPathExtension().lastPathComponent
return URL(fileURLWithPath: b).appendingPathExtension(`extension`)
}
}
}