diff --git a/Sources/SWBCore/Settings/StackedSearchPaths.swift b/Sources/SWBCore/Settings/StackedSearchPaths.swift index 47df20cc..656c1c40 100644 --- a/Sources/SWBCore/Settings/StackedSearchPaths.swift +++ b/Sources/SWBCore/Settings/StackedSearchPaths.swift @@ -104,7 +104,7 @@ extension StackedSearchPathLookupError: CustomStringConvertible { switch self { case let .unableToFind(subject, operatingSystem, searchPaths): let candidates = searchPaths.flatMap { $0.paths.map { $0.join(subject.fileName(operatingSystem: operatingSystem)).str }} - return "unable to find \(subject.fileName(operatingSystem: operatingSystem)) among search paths: \(candidates.joined(separator: ", "))" + return "unable to find \(subject.fileName(operatingSystem: operatingSystem).str) among search paths: \(candidates.joined(separator: ", "))" } } }