Skip to content

Commit

Permalink
Add prefix to library name to work around FB13180164.
Browse files Browse the repository at this point in the history
  • Loading branch information
fumoboy007 committed Dec 22, 2023
1 parent fbc7f6f commit 3cb4f2d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ let package = Package(
],
products: [
.library(
name: "Retry",
// TODO: Remove `DM` prefix after FB13180164 is resolved. The Xcode build system fails to build
// a package graph that has duplicate product names. Other retry packages may also name their
// library `Retry`, so we add a prefix to distinguish this package’s library.
name: "DMRetry",
targets: [
"Retry",
]
Expand Down

0 comments on commit 3cb4f2d

Please sign in to comment.