From 3bc8c693e4131f96214fa9a9309d92a750513272 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Wed, 26 Sep 2012 21:09:40 -0400 Subject: Standardize use of quotes in code style. --- (limited to 'lib/deps.sh') 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 -- cgit v0.9.1