Skip to content

Commit aecf130

Browse files
committed
fix crash
1 parent 4ca445d commit aecf130

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/cocoapods-binary/helper/passer.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ class ResourcePath
2626
#
2727
# @return [Hash<String, [Passer::ResourcePath]>]
2828
class_attr_accessor :resources_to_copy_for_static_framework
29-
resources_to_copy_for_static_framework = {}
29+
self.resources_to_copy_for_static_framework = {}
3030

3131
# Some pod won't be build in prebuild stage even if it have `binary=>true`.
32-
# The targets of this pods have `should_build? == true`.
32+
# The targets of this pods have `oshould_build? == true`.
3333
# We should skip integration (patch spec) for this pods
3434
#
3535
# @return [Array<String>]
3636
class_attr_accessor :target_names_to_skip_integration_framework
37-
target_names_to_skip_integration_framework = []
37+
self.target_names_to_skip_integration_framework = []
3838

3939
end
4040
end

0 commit comments

Comments
 (0)