diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/conf.sh | 2 | ||||
-rwxr-xr-x | src/lib/libreblacklist | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/conf.sh b/src/lib/conf.sh index 3ec8a8d..67aeb96 100644 --- a/src/lib/conf.sh +++ b/src/lib/conf.sh @@ -114,7 +114,7 @@ check_vars() { local VAR for VAR in "$@"; do if [[ -z ${!VAR:-} ]]; then - if [[ $(list_files $slug|wc -l) > 1 ]]; then + if [[ $(list_files $slug|wc -l) -gt 1 ]]; then echo "Configure '$VAR' in one of:" list_files $slug | sed 's/./ -> &/' else diff --git a/src/lib/libreblacklist b/src/lib/libreblacklist index 1d73d2f..627bb39 100755 --- a/src/lib/libreblacklist +++ b/src/lib/libreblacklist @@ -103,7 +103,7 @@ if [[ "${0##*/}" == libreblacklist ]]; then sed 's/\r/\n/g'<<<"$1"|sed '/^$/d' } usage() { - if [[ $# == 0 ]]; then + if [[ $# -eq 0 ]]; then printf "Usage: %s [-h] COMMAND [ARGUMENTS]\n" "${0##*/}" echo "Tool for working with the nonfree software blacklist" echo @@ -128,7 +128,7 @@ if [[ "${0##*/}" == libreblacklist ]]; then fi } - if [[ $# == 0 ]]; then + if [[ $# -eq 0 ]]; then usage >/dev/stderr exit 1 fi |