We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32f39de commit 7114c1cCopy full SHA for 7114c1c
Sources/PackageLoading/PackageBuilder.swift
@@ -74,7 +74,7 @@ extension ModuleError: FixableError {
74
case .overlappingSources(let target, let sources):
75
return "The target \(target) has sources overlapping sources: \(sources.map({$0.asString}).joined(separator: ", "))"
76
case .multipleLinuxMainFound(let package, let linuxMainFiles):
77
- let files = linuxMainFiles.map({ $0.asString }).joined(separator: ", ")
+ let files = linuxMainFiles.map({ $0.asString }).sorted().joined(separator: ", ")
78
return "The package \(package) has multiple linux main files: \(files)"
79
}
80
0 commit comments