1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-02 05:57:46 +00:00

install: Internally rename short '-b' option

Rename from OPT_BACKUP_2 to a more descriptive name "OPT_BACKUP_NO_ARGS".
This commit is contained in:
Andreas Hartmann 2021-06-23 16:18:41 +02:00
parent 3155cd510f
commit a85adf3c3f

View file

@ -68,7 +68,7 @@ static ABOUT: &str = "Copy SOURCE to DEST or multiple SOURCE(s) to the existing
static OPT_COMPARE: &str = "compare"; static OPT_COMPARE: &str = "compare";
static OPT_BACKUP: &str = "backup"; static OPT_BACKUP: &str = "backup";
static OPT_BACKUP_2: &str = "backup2"; static OPT_BACKUP_NO_ARG: &str = "backup2";
static OPT_DIRECTORY: &str = "directory"; static OPT_DIRECTORY: &str = "directory";
static OPT_IGNORED: &str = "ignored"; static OPT_IGNORED: &str = "ignored";
static OPT_CREATE_LEADING: &str = "create-leading"; static OPT_CREATE_LEADING: &str = "create-leading";
@ -113,7 +113,7 @@ pub fn uumain(args: impl uucore::Args) -> i32 {
) )
.arg( .arg(
// TODO implement flag // TODO implement flag
Arg::with_name(OPT_BACKUP_2) Arg::with_name(OPT_BACKUP_NO_ARG)
.short("b") .short("b")
.help("(unimplemented) like --backup but does not accept an argument") .help("(unimplemented) like --backup but does not accept an argument")
) )
@ -270,6 +270,7 @@ fn check_unimplemented<'a>(matches: &ArgMatches) -> Result<(), &'a str> {
Err("--backup") Err("--backup")
} else if matches.is_present(OPT_BACKUP_2) { } else if matches.is_present(OPT_BACKUP_2) {
Err("-b") Err("-b")
} else if matches.is_present(OPT_BACKUP_NO_ARG) {
} else if matches.is_present(OPT_SUFFIX) { } else if matches.is_present(OPT_SUFFIX) {
Err("--suffix, -S") Err("--suffix, -S")
} else if matches.is_present(OPT_NO_TARGET_DIRECTORY) { } else if matches.is_present(OPT_NO_TARGET_DIRECTORY) {