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 a1aace8  fix readme instructions to reflect new structure (#524)
a1aace8 is described below

commit a1aace846f29dc4346b01289cad246dd99c2e3ed
Author: Marc van Heerden <[email protected]>
AuthorDate: Tue Jul 6 20:40:56 2021 +0200

    fix readme instructions to reflect new structure (#524)
---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index f947964..0214428 100644
--- a/README.md
+++ b/README.md
@@ -69,13 +69,13 @@ US daylight savings time this corresponds to 16:00 UTC and 
at other times this i
 This is a standard cargo project with workspaces. To build it, you need to 
have `rust` and `cargo`:
 
 ```bash
-cd /rust && cargo build
+cargo build
 ```
 
 You can also use rust's official docker image:
 
 ```bash
-docker run --rm -v $(pwd)/rust:/rust -it rust /bin/bash -c "cd /rust && cargo 
build"
+docker run --rm -v $(pwd):/arrow-rs -it rust /bin/bash -c "cd /arrow-rs && 
rustup component add rustfmt && cargo build"
 ```
 
 The command above assumes that are in the root directory of the project, not 
in the same
@@ -84,7 +84,7 @@ directory as this README.md.
 You can also compile specific workspaces:
 
 ```bash
-cd /rust/arrow && cargo build
+cd arrow && cargo build
 ```
 
 ### Git Submodules

Reply via email to