How to update just one library from the Cartfile with Carthage?

前端 未结 9 879

My Cartfile has many libraries. When I do carthage update it goes through all the libraries. That can take very long time.

Is there a way to update just a s

9条回答
  •  遇见更好的自我
    2021-01-30 10:40

    Carthage supports updating single dependencies now.If you have something like this in your Cartfile:

    github "bitstadium/HockeySDK-iOS"
    

    Then you can update only this one dependency by running

    carthage update HockeySDK-iOS
    

提交回复
热议问题