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

前端 未结 9 856

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:37

    If the framework isn't stored in GitHub, or you are using the git identifier, and your cartfile looks like this:

    git "ssh://git@bitbucket.org/teamname/repo-name.git" ~> 1.0
    

    then you can update only that one running the following command

    carthage update repo-name
    

提交回复
热议问题