fastlane bundle install
2020-05-18 本文已影响0人
KB_MORE
- 运行fastlane 指令
fastlane ios testEnterprise
在bundle install 的时候报错
could not fetch specs from https://ruby.taobao.org/
这时候肯定认为是 gem sources 设置的不对
于是查看
gem sources -l # http://gems.ruby-china.com
奇怪了, 两个源怎么对不上呢,
思路
有缓存?(无厘头), 那么换源
gem sources -r http://gems.ruby-china.com
添加新源
gem sources -a https://ruby.taobao.org/
更新
gem sources -u
最后执行 bundle install 然并卵啊, 还是一样的错误
想到打包的Gemfile里设置了源☺, 之前搞打包上传添加 到的源为淘宝镜像,时间久当时还没https://gems.ruby-china,忽略了这一点
重新执行就👌了