1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00
This commit is contained in:
Terts Diepraam 2022-01-11 15:21:05 +01:00
parent 5105a59fda
commit 2cd32beb70
2 changed files with 8 additions and 3 deletions

View file

@ -15,7 +15,7 @@ edition = "2018"
path = "src/unlink.rs"
[dependencies]
clap = { version = "2.33", features = ["wrap_help"] }
clap = { version = "3.0", features = ["wrap_help", "cargo"] }
uucore = { version=">=0.0.10", package="uucore", path="../../uucore" }
uucore_procs = { version=">=0.0.7", package="uucore_procs", path="../../uucore_procs" }

View file

@ -27,9 +27,14 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
remove_file(path).map_err_context(|| format!("cannot unlink {}", path.quote()))
}
pub fn uu_app() -> App<'static, 'static> {
pub fn uu_app<'a>() -> App<'a> {
App::new(uucore::util_name())
.version(crate_version!())
.about(ABOUT)
.arg(Arg::with_name(OPT_PATH).required(true).hidden(true))
.arg(
Arg::new(OPT_PATH)
.required(true)
.hide(true)
.allow_invalid_utf8(true),
)
}