From f51fc36ebc2efe85f736b4f70cdc363402506c00 Mon Sep 17 00:00:00 2001 From: Jan Monschke Date: Thu, 7 Jul 2016 13:08:00 -0700 Subject: [PATCH] remove unneeded preserve_paths declaration Summary: The subspec for `RTCAnimation` defines a `preserve_paths` attribute of `Libraries/NativeAnimation/*.js` (https://github.com/facebook/react-native/blob/master/React.podspec#L60) but there is no JavaScript file in that repository. Linting the podspec therefore fails. The fix was to simply remove `preserve_paths` for this subspec. Closes https://github.com/facebook/react-native/pull/8626 Differential Revision: D3529959 fbshipit-source-id: b187f6ce3898493d9f6a03960caf5ec25c9e4ac2 --- React.podspec | 1 - 1 file changed, 1 deletion(-) diff --git a/React.podspec b/React.podspec index 24c366dc9..77b01c46a 100644 --- a/React.podspec +++ b/React.podspec @@ -57,7 +57,6 @@ Pod::Spec.new do |s| s.subspec 'RCTAnimation' do |ss| ss.dependency 'React/Core' ss.source_files = "Libraries/NativeAnimation/{Nodes/*,*}.{h,m}" - ss.preserve_paths = "Libraries/NativeAnimation/*.js" end s.subspec 'RCTCameraRoll' do |ss|