Merge pull request #15 from forestaa/fix/rustup-init-component
Some checks failed
Lint / commit (push) Has been cancelled
Lint / lint (push) Has been cancelled

fix: latest rustup-init requires comma-separated list of component
This commit is contained in:
Philipp Schmitt 2025-04-12 14:48:59 +02:00 committed by GitHub
commit c747bf9c5a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -84,7 +84,7 @@ if (( ${+ICE[rustup]} )) {
bin/rustup-init \
-y \
--no-modify-path \
--component cargo clippy rustc rust-fmt rust-std \
--component cargo,clippy,rustc,rust-fmt,rust-std \
--default-toolchain nightly \
--profile minimal \
|& command grep -E '(installing|installed)'
@ -92,7 +92,7 @@ if (( ${+ICE[rustup]} )) {
bin/rustup-init \
-y \
--no-modify-path \
--component cargo clippy rustc rust-fmt rust-std \
--component cargo,clippy,rustc,rust-fmt,rust-std \
--default-toolchain nightly \
--profile minimal \
&> /dev/null