snippetbashTip
carthage — A dependency management tool for Cocoa applications. More information: <https://github.com/Carthage/
Viewed 0 times
managementdependencycocoacommandclicarthagetoolfor
macos
Problem
How to use the
carthage command: A dependency management tool for Cocoa applications. More information: <https://github.com/Carthage/Carthage>.Solution
carthage — A dependency management tool for Cocoa applications. More information: <https://github.com/Carthage/Carthage>.Download the latest version of all dependencies mentioned in Cartfile, and build them:
carthage updateUpdate dependencies, but only build for iOS:
carthage update --platform iosUpdate dependencies, but don't build any of them:
carthage update --no-buildDownload and rebuild the current version of dependencies (without updating them):
carthage bootstrapRebuild a specific dependency:
carthage build {{dependency}}Code Snippets
Download the latest version of all dependencies mentioned in Cartfile, and build them
carthage updateUpdate dependencies, but only build for iOS
carthage update --platform iosUpdate dependencies, but don't build any of them
carthage update --no-buildDownload and rebuild the current version of dependencies (without updating them)
carthage bootstrapRebuild a specific dependency
carthage build {{dependency}}Context
tldr-pages: osx/carthage
Revisions (0)
No revisions yet.