美文网首页
fastlane bundle install

fastlane bundle install

作者: KB_MORE | 来源:发表于2020-05-18 18:28 被阅读0次
  1. 运行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,忽略了这一点

图片.png
重新执行就👌了

相关文章

网友评论

      本文标题:fastlane bundle install

      本文链接:https://www.haomeiwen.com/subject/igjpohtx.html