From 8bf660badc1cd16c3f7bfcd6615aee60cf445086 Mon Sep 17 00:00:00 2001 From: Elliot Hesp Date: Mon, 12 Jun 2017 11:39:18 +0100 Subject: [PATCH] Fix incorrect Podfile.template path --- bin/cocoapods.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cocoapods.sh b/bin/cocoapods.sh index 07e9a26f..e61b9238 100755 --- a/bin/cocoapods.sh +++ b/bin/cocoapods.sh @@ -7,7 +7,7 @@ if [ -d ios_dir ] fi podfile="$ios_dir/Podfile" -template=`pwd`/node_modules/react-native-firebase/Podfile.template +template=`pwd`/node_modules/react-native-firebase/ios/Podfile.template project_name=$(node -pe "require('./package.json').name")