Skip to content

Commit dc325c2

Browse files
committed
v4.1.4
1 parent eec2477 commit dc325c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Instabug.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Instabug"
3-
s.version = "4.1.3"
3+
s.version = "4.1.4"
44
s.summary = "Bug reporting for mobile apps. Learn more at http://instabug.com"
55
s.homepage = "http://instabug.com"
66
s.license = {

add_instabug_build_script.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
targets = project.targets
2222

2323
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")
2525
if target.shell_script_build_phases.detect { |existing_build_phase| existing_build_phase.name == INSTABUG_PHASE_NAME } == nil
2626
phase = target.new_shell_script_build_phase(INSTABUG_PHASE_NAME)
2727
phase.shell_script = INSTABUG_PHASE_SCRIPT

0 commit comments

Comments
 (0)