Remove -a/-all flag in du. (#14618)

Just noticed that I forget to remove `-a/-all` flag in `du`'s signature
in #14407

This pr is going to remove it
This commit is contained in:
Wind 2024-12-19 00:45:54 +08:00 committed by GitHub
parent fff0c6e2cb
commit e26364f885
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,11 +39,6 @@ impl Command for Du {
SyntaxShape::OneOf(vec![SyntaxShape::GlobPattern, SyntaxShape::String]), SyntaxShape::OneOf(vec![SyntaxShape::GlobPattern, SyntaxShape::String]),
"Starting directory.", "Starting directory.",
) )
.switch(
"all",
"Output file sizes as well as directory sizes",
Some('a'),
)
.switch( .switch(
"deref", "deref",
"Dereference symlinks to their targets for size", "Dereference symlinks to their targets for size",