Skip to content

Commit

Permalink
Removed string
Browse files Browse the repository at this point in the history
  • Loading branch information
rofle100lvl committed Aug 16, 2024
1 parent d6ae748 commit 51e5d22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/Shared/PeripheryError.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public enum PeripheryError: Error, LocalizedError, CustomStringConvertible {
case shellCommandFailed(cmd: String, args: [String], status: Int32, output: String)
case shellOutputEncodingFailed(cmd: String, args: [String], encoding: String.Encoding)
case usageError(String)
case xcodeProjectsAreUnsupported(message: String)
case xcodeProjectsAreUnsupported
case underlyingError(Error)
case invalidScheme(name: String, project: String)
case sourceGraphIntegrityError(message: String)
Expand Down Expand Up @@ -56,7 +56,7 @@ public enum PeripheryError: Error, LocalizedError, CustomStringConvertible {
return "JSON deserialization failed: \(describe(error))\nJSON:\n\(json)"
case let .indexStoreNotFound(derivedDataPath):
return "Failed to find index datastore at path: \(derivedDataPath)"
case .xcodeProjectsAreUnsupported(message: let message):
case .xcodeProjectsAreUnsupported:
return "Xcode projects are not supported on this platform"
}
}
Expand Down

0 comments on commit 51e5d22

Please sign in to comment.