diff options
author | P. J. McDermott <pjm@nac.net> | 2012-09-28 08:46:39 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-09-28 08:46:39 (EDT) |
commit | 85167af9b748873c4f1ece8a8b109c2d1b08dc40 (patch) | |
tree | 0971be11a6265d84736fbeebc9330f152eb6b5c4 /lib | |
parent | 962fb7438afe046fa12b0b02129340ae0e6c4ed3 (diff) |
Standardize use of quotes in _ob_parse_dep().
Diffstat (limited to 'lib')
-rw-r--r-- | lib/deps.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/deps.sh b/lib/deps.sh index cc2d3b1..bc6759b 100644 --- a/lib/deps.sh +++ b/lib/deps.sh @@ -56,7 +56,7 @@ ob_parse_dep() done shift $(($OPTIND - 1)) - if [ "${#}" -eq 1 ]; then + if [ ${#} -eq 1 ]; then # Separate components with spaces. _obpd_dep="$(echo "${1}" | \ sed 's/\([(\[]\)/ \1/g;s/\([<>=][<>=]*\)/\1 /g')" |