Skip to content

Commit

Permalink
fix readme instructions to reflect new structure (#524)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcvanheerden committed Jul 6, 2021
1 parent fc08c3a commit a1aace8
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit a1aace8

Please sign in to comment.