diff options
| author | bors <bors@rust-lang.org> | 2020-10-19 13:17:07 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2020-10-19 13:17:07 +0000 |
| commit | 74530adcba45edbd99bb5a96b45fe2c8e12a31aa (patch) | |
| tree | 3d136aedda5d514b740dbdc4c35ba7955b2deb96 | |
| parent | 3d3507230c62e94dcef2cea8c25c90d1d171e329 (diff) | |
| parent | 8c28ba39b573c0d9be2ce7aa3cfc60757f3c81e6 (diff) | |
| download | rust-74530adcba45edbd99bb5a96b45fe2c8e12a31aa.tar.gz rust-74530adcba45edbd99bb5a96b45fe2c8e12a31aa.zip | |
Auto merge of #6166 - achris:master, r=flip1995
Suggest a compatible shell for setup-toolchain.sh setup-toolchain.sh uses "[[" which is a bash builtin, but the guide suggests running it with sh. On Ubuntu, /bin/sh points to dash and running the script fails. --- *Please keep the line below* changelog: none
| -rw-r--r-- | doc/basics.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/basics.md b/doc/basics.md index 38959e2331b..f25edb793e2 100644 --- a/doc/basics.md +++ b/doc/basics.md @@ -46,7 +46,7 @@ this toolchain, you can just use the `setup-toolchain.sh` script or use `rustup-toolchain-install-master`: ```bash -sh setup-toolchain.sh +bash setup-toolchain.sh # OR cargo install rustup-toolchain-install-master # For better IDE integration also add `-c rustfmt -c rust-src` (optional) |
