true: added uresult

Related to #2464
This commit is contained in:
353fc443 2021-07-13 13:47:06 +00:00
parent 7d94121b95
commit bd45fe26dc
No known key found for this signature in database
GPG key ID: D58B14ED3D42A937

View file

@ -5,12 +5,20 @@
// * For the full copyright and license information, please view the LICENSE
// * file that was distributed with this source code.
// Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7422
#![allow(clippy::nonstandard_macro_braces)]
#[macro_use]
extern crate uucore;
use clap::App;
use uucore::error::UResult;
use uucore::executable;
pub fn uumain(args: impl uucore::Args) -> i32 {
#[uucore_procs::gen_uumain]
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
uu_app().get_matches_from(args);
0
Ok(())
}
pub fn uu_app() -> App<'static, 'static> {