aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-10-20 19:01:21 -0700
committerGravatar GitHub <noreply@github.com>2017-10-20 19:01:21 -0700
commit104364f88d0c6d28b5ceef43faff0aff1629d3bf (patch)
tree633e40904ebb8c302237596fc88d92d998f66527 /.travis.yml
parent4ed12213ebfd3fb9cb2e06b8a39d45c37a5c659c (diff)
Don't fail travis tests if a binary file has a trailing space (#398)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index cf3c7b3..55f92dd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,7 +13,7 @@ before_install:
- bundle exec pod install --project-directory=Firestore/Example --no-repo-update
script:
- - "! git grep ' $'" # Fail on trailing whitespace
+ - "! git grep -I ' $'" # Fail on trailing whitespace in non-binary files
- ./test.sh
- pod lib lint FirebaseCommunity.podspec --verbose | tail -40