From d4cbf607f25abdcc65c0c287843de4842bba0f4c Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Sat, 8 Dec 2018 23:09:58 -0500 Subject: [PATCH] Disable rustfmt for the time being --- .travis.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 455c287..159fc2a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,18 +40,12 @@ before_install: install: - source ~/.cargo/env || true - - | - echo "TRAVIS_RUST_VERSION=\"$TRAVIS_RUST_VERSION\"" - if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then - echo "Installing preview" - rustup component add "rustfmt-preview" - else - echo "Installing standard" - rustup component add rustfmt - fi + # Disabling for the time being: rust-lang/rustup.rs#1558 + # - rustup component add rustfmt script: - - cargo fmt --all -- --check + # Disabling for the time being: rust-lang/rustup.rs#1558 + # - cargo fmt --all -- --check - | if [ -z "$TRAVIS_TAG" ]; then cargo test