mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 12:07:46 +00:00
Merge pull request #2844 from jfinkels/tty-uresult
tty: return UResult from uumain() function
This commit is contained in:
commit
d5312e963f
1 changed files with 9 additions and 12 deletions
|
@ -12,6 +12,7 @@
|
|||
use clap::{crate_version, App, Arg};
|
||||
use std::ffi::CStr;
|
||||
use std::io::Write;
|
||||
use uucore::error::{UResult, UUsageError};
|
||||
use uucore::InvalidEncodingHandling;
|
||||
|
||||
static ABOUT: &str = "Print the file name of the terminal connected to standard input.";
|
||||
|
@ -24,21 +25,17 @@ fn usage() -> String {
|
|||
format!("{0} [OPTION]...", uucore::execution_phrase())
|
||||
}
|
||||
|
||||
pub fn uumain(args: impl uucore::Args) -> i32 {
|
||||
#[uucore_procs::gen_uumain]
|
||||
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
|
||||
let usage = usage();
|
||||
let args = args
|
||||
.collect_str(InvalidEncodingHandling::ConvertLossy)
|
||||
.accept_any();
|
||||
|
||||
let matches = uu_app().usage(&usage[..]).get_matches_from_safe(args);
|
||||
|
||||
let matches = match matches {
|
||||
Ok(m) => m,
|
||||
Err(e) => {
|
||||
eprint!("{}", e);
|
||||
return 2;
|
||||
}
|
||||
};
|
||||
let matches = uu_app()
|
||||
.usage(&usage[..])
|
||||
.get_matches_from_safe(args)
|
||||
.map_err(|e| UUsageError::new(2, format!("{}", e)))?;
|
||||
|
||||
let silent = matches.is_present(options::SILENT);
|
||||
|
||||
|
@ -68,9 +65,9 @@ pub fn uumain(args: impl uucore::Args) -> i32 {
|
|||
}
|
||||
|
||||
if atty::is(atty::Stream::Stdin) {
|
||||
libc::EXIT_SUCCESS
|
||||
Ok(())
|
||||
} else {
|
||||
libc::EXIT_FAILURE
|
||||
Err(libc::EXIT_FAILURE.into())
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue