From 8e83cad94a75c5915e26901011940ab1feeb1ef6 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Fri, 27 May 2022 11:44:27 +0200 Subject: lbu: add test for lbu include usage --- lbu.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lbu.in') diff --git a/lbu.in b/lbu.in index 6747ded..ee9c360 100644 --- a/lbu.in +++ b/lbu.in @@ -232,18 +232,18 @@ usage_include() { -r Remove specified file(s) from include list instead of adding. -v Verbose mode. __EOF__ - exit 1 + exit $1 } cmd_include() { cmd_migrate_include_exclude if [ "$LIST" ] ; then - [ $# -gt 0 ] && usage_include + [ $# -gt 0 ] && usage_include "1" >&2 show_include return fi - [ $# -lt 1 ] && usage_include + [ $# -lt 1 ] && usage_include "1" >&2 if [ "$REMOVE" ] ; then list_delete + "$@" else @@ -761,7 +761,7 @@ while getopts "adehlM:np:qrv" opt ; do ;; e) [ -z "$ENCRYPTION" ] && ENCRYPTION="$DEFAULT_CIPHER" ;; - h) usage_$SUBCMD + h) usage_$SUBCMD 0 ;; l) LIST="-l" ;; -- cgit v1.2.3