Skip to content

Commit

Permalink
Move --no-self-update to front of rustup install
Browse files Browse the repository at this point in the history
  • Loading branch information
foresterre committed Nov 9, 2024
1 parent a43f02a commit 137e3de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rust/setup_toolchain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ fn install_toolchain(toolchain: &Toolchain) -> TResult<()> {
.with_stdout()
.with_stderr()
.with_args([
"--no-self-update",
"--profile",
"minimal",
&format!("{}", toolchain.version()),
"--no-self-update",
])
.install()?;

Expand Down

0 comments on commit 137e3de

Please sign in to comment.