From 881e3027829a40e5c4ae62f8f5090aa786f75bd8 Mon Sep 17 00:00:00 2001 From: Yuki Kishimoto Date: Mon, 5 Aug 2024 15:30:41 -0400 Subject: [PATCH] contrib: fix `scripts/check.sh` Signed-off-by: Yuki Kishimoto --- contrib/scripts/check.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/contrib/scripts/check.sh b/contrib/scripts/check.sh index 38cf072ea..c61071267 100755 --- a/contrib/scripts/check.sh +++ b/contrib/scripts/check.sh @@ -4,8 +4,8 @@ set -exuo pipefail DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -"${DIR}/check-fmt.sh" check # Check if Rust code is formatted -"${DIR}/check-crates.sh" # Check all crates -"${DIR}/check-crates.sh" msrv # Check all crates MSRV -"${DIR}/check-bindings.sh" # Check all bindings -"${DIR}/check-docs.sh" # Check Rust docs \ No newline at end of file +"${DIR}/check-fmt.sh" check # Check if Rust code is formatted +"${DIR}/check-crates.sh" # Check all crates +"${DIR}/check-crates.sh" msrv "" # Check all crates MSRV +"${DIR}/check-bindings.sh" # Check all bindings +"${DIR}/check-docs.sh" # Check Rust docs \ No newline at end of file