🐛

miseで入れたcocoapodsがエラーを吐く

2024/10/10に公開

現象

miseでcocoapodsをインストールして使おうとすると以下のエラーが出る

https://github.com/CocoaPods/CLAide.git (at master@97b765e) is not yet checked out. Run `bundle install` first.

対策

cocoapodsを入れ直す

$ mise uninstall cocoapods
$ mise install cocoapods

原因

miseのcocoapodsを有効化にした状態でrubyをアップデートすると発生するらしい
なのでcocoapodsを改めて入れ直せばいい

https://github.com/ronnnnn/asdf-cocoapods/issues/3#issuecomment-1517257698

プラグイン自体がこの問題に対応するようアップデートしているみたいなので、プラグインのアップデートでも解決するかも?

$ mise plugins up

Discussion