1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

Merge pull request #7051 from cakebaker/chroot_remove_g_short_option

chroot: remove `-G` short option
This commit is contained in:
Sylvestre Ledru 2025-01-03 16:35:14 +01:00 committed by GitHub
commit 88cdf16fd7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 7 deletions

View file

@ -192,7 +192,6 @@ pub fn uu_app() -> Command {
) )
.arg( .arg(
Arg::new(options::GROUPS) Arg::new(options::GROUPS)
.short('G')
.long(options::GROUPS) .long(options::GROUPS)
.help("Comma-separated list of groups to switch to") .help("Comma-separated list of groups to switch to")
.value_name("GROUP1,GROUP2..."), .value_name("GROUP1,GROUP2..."),
@ -200,11 +199,7 @@ pub fn uu_app() -> Command {
.arg( .arg(
Arg::new(options::USERSPEC) Arg::new(options::USERSPEC)
.long(options::USERSPEC) .long(options::USERSPEC)
.help( .help("Colon-separated user and group to switch to.")
"Colon-separated user and group to switch to. \
Same as -u USER -g GROUP. \
Userspec has higher preference than -u and/or -g",
)
.value_name("USER:GROUP"), .value_name("USER:GROUP"),
) )
.arg( .arg(

View file

@ -141,7 +141,7 @@ fn test_preference_of_userspec() {
.arg("a") .arg("a")
.arg("--user") .arg("--user")
.arg("fake") .arg("fake")
.arg("-G") .arg("--groups")
.arg("ABC,DEF") .arg("ABC,DEF")
.arg(format!("--userspec={username}:{group_name}")) .arg(format!("--userspec={username}:{group_name}"))
.fails(); .fails();