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

前端 未结 9 884

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

    Swift 5

    //MARK:- Step 1
    carthage update KeychainAccess --platform iOS
    
    carthage update SDKNAME(like i mention KeychainAccess upper) --platform iOS
    

    if you face an Error like this

    //MARK:- If this error occur
    error: unable to find utility "xcodebuild", not a developer tool or in PATH
    

    Then use Part 1 in Terminal Again

    sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
    

    and again

    sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
    

提交回复
热议问题