File tree 2 files changed +7
-8
lines changed
2 files changed +7
-8
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 = "3.4.5 "
3
+ s . version = "3.4.6 "
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 = {
@@ -23,7 +23,7 @@ Pod::Spec.new do |s|
23
23
}
24
24
s . author = { "Instabug" => "[email protected] " }
25
25
s . platform = :ios , '5.0'
26
- s . source = { :git => "https://github.com/Instabug/Instabug-iOS.git" , :tag => "3.4.5 " }
26
+ s . source = { :git => "https://github.com/Instabug/Instabug-iOS.git" , :tag => "3.4.6 " }
27
27
s . source_files = 'Instabug.framework/Versions/A/Headers/*.{h}'
28
28
s . resources = 'Instabug.bundle'
29
29
s . preserve_paths = 'Instabug.framework/*' , 'Instabug.bundle'
Original file line number Diff line number Diff line change 11
11
source "${SCRIPT_SRC}"
12
12
SCRIPTEND
13
13
14
- current_dir = nil
15
- while current_dir != Dir . pwd
16
- project_path = Dir . glob ( "#{ current_dir } /*.xcodeproj" )
14
+ current_path = nil
15
+ while current_path != Dir . pwd
16
+ current_path = Dir . pwd
17
+ project_path = Dir . glob ( "#{ current_path } /*.xcodeproj" )
17
18
18
19
unless project_path . first . nil?
19
20
project = Xcodeproj ::Project . open ( project_path . first )
20
21
main_target = project . targets . first
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"
22
+ phase = main_target . new_shell_script_build_phase ( INSTABUG_PHASE_NAME )
23
23
phase . shell_script = INSTABUG_PHASE_SCRIPT
24
24
project . save ( )
25
25
break
26
26
end
27
27
28
28
Dir . chdir ( ".." )
29
- current_dir = Dir . pwd
30
29
end
You can’t perform that action at this time.
0 commit comments