From efd8d8e01e74d368d7b60e085c7723da716ec7f3 Mon Sep 17 00:00:00 2001 From: Richard Hua Date: Tue, 22 Nov 2016 17:48:52 -0800 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 519d51b..9016cf3 100644 --- a/README.md +++ b/README.md @@ -126,13 +126,13 @@ And that's it! Isn't RNPM awesome? :) 1. Add the CodePush plugin dependency to your `Podfile`, pointing at the path where NPM installed it ```ruby - pod 'CodePush', :path => './node_modules/react-native-code-push' + pod 'CodePush', :path => '../node_modules/react-native-code-push' ``` CodePush depends on an internal copy of the `SSZipArchive` library, so if your project already includes it (either directly or via a transitive dependency), then you can install a version of CodePush which excludes it by depending specifically on the `Core` subspec: ```ruby - pod 'CodePush', :path => './node_modules/react-native-code-push', :subspecs => ['Core'] + pod 'CodePush', :path => '../node_modules/react-native-code-push', :subspecs => ['Core'] ``` *NOTE: The above paths needs to be relative to your app's `Podfile`, so adjust it as nec