summaryrefslogtreecommitdiffstats
path: root/lib/deps.sh
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-09-26 21:09:40 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-09-26 21:09:40 (EDT)
commit3bc8c693e4131f96214fa9a9309d92a750513272 (patch)
tree97c48131e0a088717161a7f336ac438a933d417f /lib/deps.sh
parent438319633f1d7ecf4197f240d9c3ce811e5c5d48 (diff)
Standardize use of quotes in code style.
Diffstat (limited to 'lib/deps.sh')
-rw-r--r--lib/deps.sh6
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