You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
xcodebuild -version: Xcode 7.3.1 Build version 7D1014
Are you using --no-build? No
Are you using --no-use-binaries? No
Are you using --use-submodules? No
Feature request:
I have to Google every single time I use carthage build --no-skip-current is there a simpler API for carthage build --no-skip-current? Something more memorable like:
carthage build --archive
So then I can do
carthage archive
Or maybe
carthage archive --building, so I can skip the build command?
Thanks for your help.
The text was updated successfully, but these errors were encountered:
But I do think it'd be worth adding a variant that both builds and archives. carthage build --archive makes sense to me. Want to open a pull request? 😄
I think you just need to change defaultValue: nil to defaultValue: false. Since public let archive: Bool, nil isn't a valid value. This causes type inference to fail, leading to the unhelpful error that you shared above.
carthage version
: 0.16.2xcodebuild -version
: Xcode 7.3.1 Build version 7D1014--no-build
? No--no-use-binaries
? No--use-submodules
? NoFeature request:
I have to Google every single time I use
carthage build --no-skip-current
is there a simpler API forcarthage build --no-skip-current
? Something more memorable like:carthage build --archive
So then I can do
carthage archive
Or maybe
carthage archive --building
, so I can skip the build command?Thanks for your help.
The text was updated successfully, but these errors were encountered: