We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d28a44e commit bf955a9Copy full SHA for bf955a9
1 file changed
src/uucore_procs/src/lib.rs
@@ -59,7 +59,8 @@ pub fn main(args: TokenStream, stream: TokenStream) -> TokenStream {
59
uucore::show_error!("{s}");
60
}
61
if e.usage() {
62
- eprintln!("Try '{} --help' for more information.", uucore::execution_phrase());
+ use std::io::{stderr, Write as _};
63
+ let _ = writeln!(stderr(),"Try '{} --help' for more information.", uucore::execution_phrase());
64
65
e.code()
66
0 commit comments