From 8c32f2581fcfb19d070d94b76b298799bbf913c8 Mon Sep 17 00:00:00 2001 From: Jesse Squires Date: Fri, 18 Nov 2016 12:37:24 -0800 Subject: [PATCH] Fix coveralls reporting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: 😅 oops. sorry. 😄 Recent changes broke this. Error: `/Users/travis/build.sh: line 57: slather: command not found` https://travis-ci.org/Instagram/IGListKit/jobs/177084719#L697 Closes https://github.com/Instagram/IGListKit/pull/223 Differential Revision: D4206344 Pulled By: rnystrom fbshipit-source-id: b20ae4c637eef3744306771fc65acae9ec76bdbc --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index c804a130..52b1ef32 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ osx_image: xcode8.1 cache: - cocoapods + - slather env: global: @@ -34,6 +35,9 @@ env: - DESTINATION="OS=9.0,name=Apple TV 1080p" SDK="$TVOS_SDK" SCHEME="$TVOS_SCHEME" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="YES" - DESTINATION="OS=10.0,name=Apple TV 1080p" SDK="$TVOS_SDK" SCHEME="$TVOS_SCHEME" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" +before_install: + - gem install slather --no-rdoc --no-ri --no-document --quiet + script: - if [ $POD_LINT == "YES" ]; then pod lib lint;