frontend: just directly call Usage on missing `man`

This commit is contained in:
Lyndon Brown 2020-03-19 06:16:57 +00:00 committed by Luca Boccassi
parent 3d30597e93
commit d1fcfa339e
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ case "${1}" in
if [ $(which man) ]; then
man lb
else
${0} --usage
Usage
fi
exit 0
;;