Skip to content

Commit

Permalink
Merge pull request #986 from CocoaPods/amorde/build-phase-exception-s…
Browse files Browse the repository at this point in the history
…et-fix

Update PBXFileSystemSynchronizedGroupBuildPhaseMembershipExceptionSet to correctly support build_phase attribute pointing to PBXCopyFilesBuildPhase
  • Loading branch information
amorde authored Oct 26, 2024
2 parents fecbac5 + 795d2d1 commit 6b86998
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ def display_name

# This class represents a file system synchronized group build phase membership exception set.
class PBXFileSystemSynchronizedGroupBuildPhaseMembershipExceptionSet < AbstractObject
# @return [PBXSourcesBuildPhase] The build phase to which this exception set applies.
# @return [PBXSourcesBuildPhase, PBXCopyFilesBuildPhase] The build phase to which this exception set applies.
#
has_one :build_phase, PBXSourcesBuildPhase
has_one :build_phase, [PBXSourcesBuildPhase, PBXCopyFilesBuildPhase]

# @return [Array<String>] The list of files in the group that are excluded from the build phase.
#
Expand Down

0 comments on commit 6b86998

Please sign in to comment.