From f2addacccb4b312748209181b24f9693984ce177 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 22 Nov 2019 11:05:16 +0100 Subject: [PATCH] Fixup for previous commit --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 04c81b29..4579af1e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ jobs: before_script: - rustup component add rustfmt - | - if [ "$TRAVIS_RUST_VERSION" != "1.34.2" ]; then + if [ "$TRAVIS_RUST_VERSION" != "1.36.0" ]; then rustup component add clippy || true fi - | @@ -28,7 +28,7 @@ script: fi - cargo fmt --all -- --check - | - if [ "$TRAVIS_RUST_VERSION" != "1.34.2" ] && ( rustup component list | grep -q clippy ); then + if [ "$TRAVIS_RUST_VERSION" != "1.36.0" ] && ( rustup component list | grep -q clippy ); then cargo clippy --all --all-targets --all-features -- -D warnings fi - cargo build --all --verbose