From c228178aa92581b9d4654696182ebbf36fa3d20b Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Wed, 13 Feb 2019 17:20:13 +1100 Subject: [PATCH] Fix cargo fmt cmd in travis.yml --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index b1144ae14..db2e17430 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,9 +17,9 @@ script: - cargo test --verbose --all --manifest-path lighthouse-beacon/Cargo.toml - cargo test --verbose --all --manifest-path lighthouse-validator/Cargo.toml - cargo test --verbose --all --manifest-path lighthouse-libs/Cargo.toml - - cargo fmt --all -- --check --manifest-path lighthouse-beacon/Cargo.toml - - cargo fmt --all -- --check --manifest-path lighthouse-validator/Cargo.toml - - cargo fmt --all -- --check --manifest-path lighthouse-libs/Cargo.toml + - cargo fmt --all --manifest-path lighthouse-beacon/Cargo.toml -- --check + - cargo fmt --all --manifest-path lighthouse-validator/Cargo.toml -- --check + - cargo fmt --all --manifest-path lighthouse-libs/Cargo.toml -- --check rust: - stable - beta