Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix readme instructions to reflect new structure #524

Merged
merged 1 commit into from
Jul 6, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down