1
Fork 0
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:
Michael Gehring 2014-07-01 17:19:07 +02:00
parent 401c216e6a
commit afa0a9e6f0

View file

@ -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 => {