You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2022/08/18 21:08:26 UTC

[arrow-rs] branch master updated: Fix rustfmt commands (#2506)

This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new 68934f0fa Fix rustfmt commands (#2506)
68934f0fa is described below

commit 68934f0fa5da62ae9fcbb753d1dfd8f672a4eb1e
Author: Andrew Lamb <an...@nerdnetworks.org>
AuthorDate: Thu Aug 18 17:08:20 2022 -0400

    Fix rustfmt commands (#2506)
---
 dev/release/verify-release-candidate.sh | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh
index 00627a998..cf8050c1c 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -105,7 +105,10 @@ test_source_distribution() {
 
   # raises on any formatting errors
   rustup component add rustfmt --toolchain stable
-  cargo fmt --all -- --check
+  (cd arrow && cargo fmt --check)
+  (cd arrow-flight && cargo fmt --check)
+  (cd parquet && cargo fmt --check)
+  (cd parquet_derive && cargo fmt --check)
 
   # Clone testing repositories if not cloned already
   git clone https://github.com/apache/arrow-testing.git arrow-testing-data