Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Carthage build after update for specific platforms

Tags:

ios

carthage

Is it possible to tell the carthage update command to build for certain platforms after it downloads source code? Something like carthage update --platforms iOS | watchOS

like image 266
i-konov Avatar asked Sep 05 '16 10:09

i-konov


1 Answers

You were close..

carthage update --platform iOS,watchOS

Landed here since I tried to find out the same thing, then realized:

carthage help update

"the platforms to build for (one of 'all', 'macOS', 'iOS', 'watchOS', 'tvOS', or comma-separated values of the formers except for 'all')"

like image 111
Jonas Bromö Avatar answered Nov 14 '22 22:11

Jonas Bromö