1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 11:07:44 +00:00

mkdir: allow --parent to be provided more than once

This commit is contained in:
Daringcuteseal 2024-10-31 04:49:44 +07:00
parent bf6de81a1f
commit 41f52f3402
No known key found for this signature in database
GPG key ID: 173F4A541C0E39D7

View file

@ -114,6 +114,7 @@ pub fn uu_app() -> Command {
.short('p') .short('p')
.long(options::PARENTS) .long(options::PARENTS)
.help("make parent directories as needed") .help("make parent directories as needed")
.overrides_with(options::PARENTS)
.action(ArgAction::SetTrue), .action(ArgAction::SetTrue),
) )
.arg( .arg(