Skip to content

Commit 9500e08

Browse files
committed
📝 Change the Embed Instabug framework name.
1 parent dacff62 commit 9500e08

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

link.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
frameworks_build_phase = target.build_phases.find { |build_phase| build_phase.to_s == 'FrameworksBuildPhase' }
3030

3131
# Add new "Embed Frameworks" build phase to target
32-
embed_frameworks_build_phase = target.build_phases.find { |build_phase| build_phase.to_s == 'Embed Frameworks'}
32+
embed_frameworks_build_phase = target.build_phases.find { |build_phase| build_phase.to_s == 'Embed Instabug Framework'}
3333
Kernel.exit(0) if embed_frameworks_build_phase
3434
embed_frameworks_build_phase = project.new(Xcodeproj::Project::Object::PBXCopyFilesBuildPhase)
3535
embed_frameworks_build_phase.name = 'Embed Instabug Framework'

unlink.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
frameworks_build_phase = target.build_phases.find { |build_phase| build_phase.to_s == 'FrameworksBuildPhase' }
2525

2626
# Remove "Embed Frameworks" build phase to target
27-
embed_frameworks_build_phase = target.build_phases.find { |build_phase| build_phase.to_s == 'Embed Frameworks'}
27+
embed_frameworks_build_phase = target.build_phases.find { |build_phase| build_phase.to_s == 'Embed Instabug Framework'}
2828
Kernel.exit(0) unless embed_frameworks_build_phase
2929
target.build_phases.delete(embed_frameworks_build_phase)
3030

0 commit comments

Comments
 (0)