diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-10-19 14:38:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-19 14:38:28 +0200 |
| commit | e8544f80ec61681ca3d2935996f614478934c2ec (patch) | |
| tree | 1711278d2917094f5ef077fc4ab3ace0ff427ba1 | |
| parent | c9764263d288fce834596534cd698e0e6401aa66 (diff) | |
| parent | 2d144d21150d98424f7dff8af028f58a9c9b6c82 (diff) | |
| download | rust-e8544f80ec61681ca3d2935996f614478934c2ec.tar.gz rust-e8544f80ec61681ca3d2935996f614478934c2ec.zip | |
Rollup merge of #116921 - Fenex:fix/bootstrap-setup-info-msg, r=compiler-errors
fix(bootstrap) info message show correct path now running `./x setup tools` showed me a note with incorrect path
| -rw-r--r-- | src/bootstrap/src/core/build_steps/setup.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/core/build_steps/setup.rs b/src/bootstrap/src/core/build_steps/setup.rs index ebe093674fc..435ebb6df90 100644 --- a/src/bootstrap/src/core/build_steps/setup.rs +++ b/src/bootstrap/src/core/build_steps/setup.rs @@ -183,7 +183,7 @@ pub fn setup(config: &Config, profile: Profile) { eprintln!(); eprintln!( "note: the `tools` profile sets up the `stage2` toolchain (use \ - `rustup toolchain link 'name' host/build/stage2` to use rustc)" + `rustup toolchain link 'name' build/host/stage2` to use rustc)" ) } |
