Skip to content

Commit c747bf9

Browse files
authored
Merge pull request #15 from forestaa/fix/rustup-init-component
fix: latest rustup-init requires comma-separated list of component
2 parents 327134e + a27a5a2 commit c747bf9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

za-rust-atclone-handler

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,15 @@ if (( ${+ICE[rustup]} )) {
8484
bin/rustup-init \
8585
-y \
8686
--no-modify-path \
87-
--component cargo clippy rustc rust-fmt rust-std \
87+
--component cargo,clippy,rustc,rust-fmt,rust-std \
8888
--default-toolchain nightly \
8989
--profile minimal \
9090
|& command grep -E '(installing|installed)'
9191
} else {
9292
bin/rustup-init \
9393
-y \
9494
--no-modify-path \
95-
--component cargo clippy rustc rust-fmt rust-std \
95+
--component cargo,clippy,rustc,rust-fmt,rust-std \
9696
--default-toolchain nightly \
9797
--profile minimal \
9898
&> /dev/null

0 commit comments

Comments
 (0)