Skip to content

Commit 3fd937b

Browse files
committed
Fix integration test for Xcode 13
This fixes `Found multiple targets named 'FooLib'` which is happening in this test when using the XCBuild from Xcode 13. We should figure out separately what to do about that case, but for now it seems most practical to change the test in order to not block other work in SwiftPM.
1 parent 6cb86f7 commit 3fd937b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

IntegrationTests/Fixtures/XCBuild/Libraries/Foo/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55
let package = Package(
66
name: "Foo",
77
products: [
8-
.library(name: "FooLib", type: .static, targets: ["FooLib"]),
8+
.library(name: "FooLibProduct", type: .static, targets: ["FooLib"]),
99
],
1010
dependencies: [
1111
.package(path: "../Bar")

0 commit comments

Comments
 (0)