mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-30 04:27:45 +00:00
uucore: fix utility name in coreopts parsing error messages
This commit is contained in:
parent
d0b5b9a9fd
commit
cb1b32cda1
1 changed files with 3 additions and 1 deletions
|
@ -41,7 +41,9 @@ impl<'a> CoreOptions<'a> {
|
||||||
let matches = match self.options.parse(&args[1..]) {
|
let matches = match self.options.parse(&args[1..]) {
|
||||||
Ok(m) => { Some(m) },
|
Ok(m) => { Some(m) },
|
||||||
Err(f) => {
|
Err(f) => {
|
||||||
crash!(1, "{}", f);
|
pipe_write!(&mut ::std::io::stderr(), "{}: error: ", self.help_text.name);
|
||||||
|
pipe_writeln!(&mut ::std::io::stderr(), "{}", f);
|
||||||
|
::std::process::exit(1);
|
||||||
}
|
}
|
||||||
}.unwrap();
|
}.unwrap();
|
||||||
if matches.opt_present("help") {
|
if matches.opt_present("help") {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue