This repository was archived by the owner on Oct 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = "Instabug"
3- s . version = "3.4.4 "
3+ s . version = "3.4.5 "
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" => "[email protected] " } 2525 s . platform = :ios , '5.0'
26- s . source = { :git => "https://github.com/Instabug/Instabug-iOS.git" , :tag => "3.4.4 " }
26+ s . source = { :git => "https://github.com/Instabug/Instabug-iOS.git" , :tag => "3.4.5 " }
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 1010 fi
1111 source "${SCRIPT_SRC}"
1212 SCRIPTEND
13- current_dir = Dir . pwd
14- while true
15- Dir . chdir ( ".." )
16- if current_dir != Dir . pwd
17- current_dir = Dir . pwd
18- else
19- break
20- end
13+
14+ current_dir = nil
15+ while current_dir != Dir . pwd
2116 project_path = Dir . glob ( "#{ current_dir } /*.xcodeproj" )
17+
2218 unless project_path . first . nil?
2319 project = Xcodeproj ::Project . open ( project_path . first )
2420 main_target = project . targets . first
25- phase = main_target . new_shell_script_build_phase ( INSTABUG_PHASE_NAME )
21+ phase = main_target . shell_script_build_phases . select { |bp | bp . name == INSTABUG_PHASE_NAME } . first || main_target . new_shell_script_build_phase ( INSTABUG_PHASE_NAME )
22+ phase . shell_path = "/bin/sh"
2623 phase . shell_script = INSTABUG_PHASE_SCRIPT
2724 project . save ( )
2825 break
2926 end
27+
28+ Dir . chdir ( ".." )
29+ current_dir = Dir . pwd
3030end
You can’t perform that action at this time.
0 commit comments