From b0cf766b726e9fc77bd1a7ea4ab57c2c125f5d98 Mon Sep 17 00:00:00 2001 From: oech3 <79379754+oech3@users.noreply.github.com> Date: Tue, 7 Apr 2026 06:03:03 +0900 Subject: [PATCH] pathchk: fix name --- src/uu/pathchk/src/pathchk.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uu/pathchk/src/pathchk.rs b/src/uu/pathchk/src/pathchk.rs index 0f015c861..635ae6e98 100644 --- a/src/uu/pathchk/src/pathchk.rs +++ b/src/uu/pathchk/src/pathchk.rs @@ -95,9 +95,9 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> { } pub fn uu_app() -> Command { - Command::new("paste") + Command::new("pathchk") .version(uucore::crate_version!()) - .help_template(uucore::localized_help_template("paste")) + .help_template(uucore::localized_help_template("pathchk")) .about(translate!("pathchk-about")) .override_usage(format_usage(&translate!("pathchk-usage"))) .infer_long_args(true)