From f736fcee2b1d6846548ca244d1526e0a120e6127 Mon Sep 17 00:00:00 2001 From: Ryo Onodera Date: Fri, 26 May 2023 15:22:03 +0900 Subject: [PATCH] Fix indent of ./ci/test-checks.sh (#31831) --- ci/test-checks.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ci/test-checks.sh b/ci/test-checks.sh index 52661cf212..817ce990d4 100755 --- a/ci/test-checks.sh +++ b/ci/test-checks.sh @@ -73,17 +73,17 @@ else echo "Note: cargo-for-all-lock-files.sh skipped because $CI_BASE_BRANCH != $EDGE_CHANNEL" fi - _ ci/order-crates-for-publishing.py +_ ci/order-crates-for-publishing.py nightly_clippy_allows=(--allow=clippy::redundant_clone) # run nightly clippy for `sdk/` as there's a moderate amount of nightly-only code there - _ scripts/cargo-for-all-lock-files.sh -- "+${rust_nightly}" clippy --workspace --all-targets --features dummy-for-ci-check -- \ - --deny=warnings \ - --deny=clippy::default_trait_access \ - --deny=clippy::integer_arithmetic \ - --deny=clippy::used_underscore_binding \ - "${nightly_clippy_allows[@]}" +_ scripts/cargo-for-all-lock-files.sh -- "+${rust_nightly}" clippy --workspace --all-targets --features dummy-for-ci-check -- \ + --deny=warnings \ + --deny=clippy::default_trait_access \ + --deny=clippy::integer_arithmetic \ + --deny=clippy::used_underscore_binding \ + "${nightly_clippy_allows[@]}" # temporarily run stable clippy as well to scan the codebase for # `redundant_clone`s, which is disabled as nightly clippy is buggy: @@ -106,6 +106,6 @@ fi _ scripts/cargo-for-all-lock-files.sh -- "+${rust_nightly}" fmt --all -- --check - _ ci/do-audit.sh +_ ci/do-audit.sh echo --- ok