install pods

This commit is contained in:
Dan Motzenbecker 2015-08-22 13:32:06 -04:00
parent d554999984
commit 14852189d3
1 changed files with 5 additions and 0 deletions

View File

@ -53,6 +53,11 @@ init = (projName) ->
execSync "#{ binPath }react-native init #{ projName }"
execSync "mv #{ projName } iOS"
log 'Installing Pod dependencies'
process.chdir 'iOS'
execSync "cp #{ resources }Podfile ."
execSync 'pod install'
catch e
logErr e.message