File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "Instabug"
3
- s . version = "4.1.3 "
3
+ s . version = "4.1.4 "
4
4
s . summary = "Bug reporting for mobile apps. Learn more at http://instabug.com"
5
5
s . homepage = "http://instabug.com"
6
6
s . license = {
Original file line number Diff line number Diff line change 21
21
targets = project . targets
22
22
23
23
targets . each do |target |
24
- if target . product_type == "com.apple.product-type.application" or target . product_type == "com.apple.product-type.app-extension"
24
+ if target . is_a? Xcodeproj :: Project :: Object :: PBXNativeTarget and ( target . product_type == "com.apple.product-type.application" or target . product_type == "com.apple.product-type.app-extension" )
25
25
if target . shell_script_build_phases . detect { |existing_build_phase | existing_build_phase . name == INSTABUG_PHASE_NAME } == nil
26
26
phase = target . new_shell_script_build_phase ( INSTABUG_PHASE_NAME )
27
27
phase . shell_script = INSTABUG_PHASE_SCRIPT
You can’t perform that action at this time.
0 commit comments