This repository was archived by the owner on Oct 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +8
-6
lines changed
Instabug.framework/Versions/A Expand file tree Collapse file tree 5 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 55
66 Copyright: (c) 2014 by Instabug, Inc., all rights reserved.
77
8- Version: 4.1
8+ Version: 4.1.1
99 */
1010
1111// ===========================================================================================================================================
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = "Instabug"
3- s . version = "4.1"
3+ s . version = "4.1.1 "
44 s . summary = "Bug reporting for mobile apps. Learn more at http://instabug.com"
55 s . homepage = "http://instabug.com"
66 s . license = {
@@ -23,7 +23,7 @@ Pod::Spec.new do |s|
2323 }
2424 s . author = { "Instabug" => "contactus@instabug.com" }
2525 s . platform = :ios , '5.0'
26- s . source = { :git => "https://github.com/Instabug/Instabug-iOS.git" , :tag => "4.1" }
26+ s . source = { :git => "https://github.com/Instabug/Instabug-iOS.git" , :tag => s . version . to_s }
2727 s . source_files = 'Instabug.framework/Versions/A/Headers/*.{h}'
2828 s . resources = 'Instabug.bundle'
2929 s . preserve_paths = 'Instabug.framework/*' , 'Instabug.bundle'
Original file line number Diff line number Diff line change 2222
2323 targets . each do |target |
2424 if target . product_type == "com.apple.product-type.application" or target . product_type == "com.apple.product-type.app-extension"
25- phase = target . new_shell_script_build_phase ( INSTABUG_PHASE_NAME )
26- phase . shell_script = INSTABUG_PHASE_SCRIPT
27- project . save ( )
25+ if target . shell_script_build_phases . detect { |existing_build_phase | existing_build_phase . name == INSTABUG_PHASE_NAME } == nil
26+ phase = target . new_shell_script_build_phase ( INSTABUG_PHASE_NAME )
27+ phase . shell_script = INSTABUG_PHASE_SCRIPT
28+ project . save ( )
29+ end
2830 end
2931 end
3032
You can’t perform that action at this time.
0 commit comments