Fix rustup command in the docs. (#48)

rustup install nightly --component rust-src

gives:

```
error: Found argument '--component' which wasn't expected, or isn't valid in this context

USAGE:
    rustup install [FLAGS] [OPTIONS] <toolchain>...

For more information try --help
```

The correct command seems to be `rustup toolchain install nightly --component rust-src`.
pull/52/head
Markus Stange 3 years ago committed by GitHub
parent b880ccd269
commit 70dc862196
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,7 +7,7 @@ This is easily achieved with [`rustup`]:
```console ```console
rustup install stable rustup install stable
rustup install nightly --component rust-src rustup toolchain install nightly --component rust-src
``` ```
Once you have the Rust tool-chains installed, you must also install the `bpf-linker` - for linking our eBPF program - and `cargo-generate` - for generating the project skeleton. Once you have the Rust tool-chains installed, you must also install the `bpf-linker` - for linking our eBPF program - and `cargo-generate` - for generating the project skeleton.

Loading…
Cancel
Save