Skip to content

Commit

Permalink
rm erroneous script
Browse files Browse the repository at this point in the history
  • Loading branch information
russellwheatley committed Aug 20, 2024
1 parent e47986c commit e6cc781
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/macos/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ target 'io.invertase.testing-macOS' do
pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-async-storage/async-storage'

post_install do |installer|
# Remove this script for React-Fabric macOS 0.74.1
installer.pods_project.targets.each do |target|
if target.name == 'React-Fabric'
target.build_phases.each do |phase|
if phase.display_name == '[CP-User] [RN]Check rncore'
target.build_phases.delete(phase)
end
end
end
end
react_native_post_install(installer)
end
end

0 comments on commit e6cc781

Please sign in to comment.