From 798ed2279d2ad1544c4c099026917bcfb4f73746 Mon Sep 17 00:00:00 2001
From: Chris Wong <lambda.fairy@gmail.com>
Date: Mon, 16 Apr 2018 20:49:12 +1200
Subject: [PATCH] Travis: work around Clippy bug

---
 .travis.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index f26f51c..145b862 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,7 +11,9 @@ script:
   - |
     if command -v cargo-clippy > /dev/null; then
       CLIPPY_STATUS=0
-      for package in maud_htmlescape maud_macros maud maud_lints maud_extras; do
+      # TODO add `maud_extras` back in when Clippy issue is fixed
+      # https://github.com/rust-lang-nursery/rust-clippy/issues/2594
+      for package in maud_htmlescape maud_macros maud maud_lints; do
         (cd $package && cargo clippy -- -D warnings) || CLIPPY_STATUS=$?
       done
       (exit $CLIPPY_STATUS)