Possible to suppress rustup "is up to date" messages?

I get messages from use of rustup like:

"info: component 'rust-std' for target 'wasm32-unknown-unknown' is up to date"

even when using the --quiet option.

Is it possible to supress them in some way?

Assuming you don't want to throw away all output indiscriminately (in which case rustup update 2> /dev/null would work quite nicely), you could just grep them out.

Not within rustup, the -q flag only disables the progress bar for downloads.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.