File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import func POSIX.getenv
18
18
public struct BuildParameters {
19
19
20
20
/// Path to the module cache directory to use for SwiftPM's own tests.
21
- fileprivate static let swiftpmTestCache = determineTempDirectory ( ) . appending ( component: " org.swift.swiftpm.tests " )
21
+ fileprivate static let swiftpmTestCache = determineTempDirectory ( ) . appending ( component: " org.swift.swiftpm.tests-2 " )
22
22
23
23
/// Returns the directory to be used for module cache.
24
24
fileprivate var moduleCache : AbsolutePath {
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ extension ModuleError: FixableError {
74
74
case . overlappingSources( let target, let sources) :
75
75
return " The target \( target) has sources overlapping sources: \( sources. map ( { $0. asString} ) . joined ( separator: " , " ) ) "
76
76
case . multipleLinuxMainFound( let package , let linuxMainFiles) :
77
- let files = linuxMainFiles. map ( { $0. asString } ) . joined ( separator: " , " )
77
+ let files = linuxMainFiles. map ( { $0. asString } ) . sorted ( ) . joined ( separator: " , " )
78
78
return " The package \( package ) has multiple linux main files: \( files) "
79
79
}
80
80
}
You can’t perform that action at this time.
0 commit comments