ipaのbuild環境を作成しています。新しく作った環境でpod install
がうまくいきませんでした。
pod installが失敗
pod install
Updating local specs repositories
Creating shallow clone of spec repo master from https://github.com/CocoaPods/Specs.git
[!] Unable to add a source with url https://github.com/CocoaPods/Specs.git named master.
You can try adding it manually in ~/.cocoapods/repos or via pod repo add.
手動で、pod repoを追加しろとあります。
~/.cocoapods/reposにSpecs.gitをclone
ホームにあるCocoaPodsのディレクトリに、Specs.gitをcloneします。
cd ~/.cocoapods/repos
git clone https://github.com/CocoaPods/Specs.git master
再度pod install
# podのディレクトリに戻る、無くても良い
cd -
# pod installを実行
pod install
今度はうまくいきました(☝ ՞ਊ ՞)
参考