Skip to content

Commit 94711fa

Browse files
authored
Merge pull request #779 from plemarquand/fixup-stacked-search-paths-lookup-error-message
Fixup StackedSearchPathLookupError error message
2 parents 7de536c + 0a22100 commit 94711fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SWBCore/Settings/StackedSearchPaths.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ extension StackedSearchPathLookupError: CustomStringConvertible {
104104
switch self {
105105
case let .unableToFind(subject, operatingSystem, searchPaths):
106106
let candidates = searchPaths.flatMap { $0.paths.map { $0.join(subject.fileName(operatingSystem: operatingSystem)).str }}
107-
return "unable to find \(subject.fileName(operatingSystem: operatingSystem)) among search paths: \(candidates.joined(separator: ", "))"
107+
return "unable to find \(subject.fileName(operatingSystem: operatingSystem).str) among search paths: \(candidates.joined(separator: ", "))"
108108
}
109109
}
110110
}

0 commit comments

Comments
 (0)