diff options
author | Lyndon Brown <jnqnfe@gmail.com> | 2020-03-19 06:16:57 +0000 |
---|---|---|
committer | Luca Boccassi <bluca@debian.org> | 2020-03-20 09:04:41 +0000 |
commit | d1fcfa339e07ed013ce85b92bff570c686185e23 (patch) | |
tree | f2ca0d137d4cc182c6209e4a37aadaccec7e1665 /frontend/lb | |
parent | 3d30597e9377f1f9e66a0c77d616b1f699fef5ef (diff) | |
download | vyos-live-build-d1fcfa339e07ed013ce85b92bff570c686185e23.tar.gz vyos-live-build-d1fcfa339e07ed013ce85b92bff570c686185e23.zip |
frontend: just directly call Usage on missing `man`
Diffstat (limited to 'frontend/lb')
-rwxr-xr-x | frontend/lb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/lb b/frontend/lb index 855ec3070..4a218ddf0 100755 --- a/frontend/lb +++ b/frontend/lb @@ -24,7 +24,7 @@ case "${1}" in if [ $(which man) ]; then man lb else - ${0} --usage + Usage fi exit 0 ;; |