mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 12:07:46 +00:00
uutils: fix 'uutils --help <util>'
This commit is contained in:
parent
401c216e6a
commit
afa0a9e6f0
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ fn main() {
|
|||
let util = args.get(1).as_slice();
|
||||
match umap.find_equiv(&util) {
|
||||
Some(&uumain) => {
|
||||
os::set_exit_status(uumain(vec!["--help".to_string()]));
|
||||
os::set_exit_status(uumain(vec![util.to_string(), "--help".to_string()]));
|
||||
return
|
||||
}
|
||||
None => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue