We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a118ca commit 87bf3e3Copy full SHA for 87bf3e3
.travis.yml
@@ -22,7 +22,12 @@ env:
22
- DESTINATION="platform=OS X,arch=x86_64" SDK="$MACOS_SDK" SCHEME="$MACOS_SCHEME"
23
before_install:
24
- brew update
25
- - brew install carthage
+ - if brew list | grep -q carthage; then
26
+ echo Carthage installed. Proceed without installing
27
+ else
28
+ echo Carthage not installed. Installing using homebrew
29
+ brew install carthage
30
+ fi
31
- gem install cocoapods -v 1.0.0.beta.2
32
install:
33
- pod _1.0.0.beta.2_ install
0 commit comments