diff options
Diffstat (limited to 'lib/deps.sh')
-rw-r--r-- | lib/deps.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/deps.sh b/lib/deps.sh index b59d69f..cc2d3b1 100644 --- a/lib/deps.sh +++ b/lib/deps.sh @@ -120,7 +120,7 @@ ob_reduce_deps() _obrd_orig_ifs _obrd_dep_and _obrd_dep_or \ _obrd_dep_list _obrd_dep_or_list _obrd_dep - _obrd_union=false + _obrd_union='false' while getopts 'a:u' _obrd_opt; do case "${_obrd_opt}" in @@ -128,7 +128,7 @@ ob_reduce_deps() _obrd_host_arch="${OPTARG}" ;; u) - _obrd_union=true + _obrd_union='true' ;; ?) _ob_return 125 @@ -138,7 +138,7 @@ ob_reduce_deps() done shift $(($OPTIND - 1)) - if [ "${#}" -eq 1 ]; then + if [ ${#} -eq 1 ]; then _obrd_deps="${1}" else _ob_return 125 |