メモメモ
環境
OS X El Capitan 10.11.6
cocoapods 0.39.0
したこと
pod 'Realm', :git => 'https://github.com/realm/realm-cocoa.git'
こんな感じにして、pod install を走らせた
問題発生
$ pod install Analyzing dependencies Pre-downloading: `Realm` from `https://github.com/realm/realm-cocoa.git` [!] /bin/bash -c set -e sh build.sh cocoapods-setup core is not a symlink. Deleting... Downloading dependency: core 1.5.0 ERROR: One of Realm's submodules is missing! If you're using Realm and/or RealmSwift from a git branch, please add 'submodules: true' to their entries in your Podfile.
こんなのが出た。
‘submodules: true’ .. どうやって追加するんだろ
解決
:submodules => true を追加
pod 'Realm', :git => 'https://github.com/realm/realm-cocoa.git' :submodules => true # pod install ... Pre-downloading: `Realm` from `https://github.com/realm/realm-cocoa.git`, submodules `true`
問題無いです!
‘submodules: true’ は ‘:submodules => true’ だったんですね
ではでは