From 795d2d136281a2f633faa5f2def416c37962fbd3 Mon Sep 17 00:00:00 2001 From: Eric Amorde Date: Sat, 26 Oct 2024 14:39:29 -0700 Subject: [PATCH] Update PBXFileSystemSynchronizedGroupBuildPhaseMembershipExceptionSet to correctly support build_phase attribute pointing to PBXCopyFilesBuildPhase --- .../project/object/file_system_synchronized_exception_set.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/xcodeproj/project/object/file_system_synchronized_exception_set.rb b/lib/xcodeproj/project/object/file_system_synchronized_exception_set.rb index b23dca01..9e61e10f 100644 --- a/lib/xcodeproj/project/object/file_system_synchronized_exception_set.rb +++ b/lib/xcodeproj/project/object/file_system_synchronized_exception_set.rb @@ -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] The list of files in the group that are excluded from the build phase. #