index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Allan McRae <allan@archlinux.org> | 2008-12-04 23:20:24 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-12-07 22:09:05 -0600 |
commit | b373b1d16b6235bef2e34a9a21e043418222a813 (patch) | |
tree | 1bf45062665e60d58e30014259b3df2f995a7efd /contrib/pactree | |
parent | a1f7c83dbf3bce492163362d2896e3a4176be616 (diff) |
-rwxr-xr-x | contrib/pactree | 3 |
diff --git a/contrib/pactree b/contrib/pactree index d9fa8b3b..df536717 100755 --- a/contrib/pactree +++ b/contrib/pactree @@ -208,11 +208,10 @@ for (( n=0 ; n < $len_options ; n++ )); do continue fi - if [[ "${options[$n]}" =~ -d[[:digit:]]* || "${options[$n]}" == "--depth" ]]; then + if [[ "${options[$n]}" =~ -d[[:digit:]]+ || "${options[$n]}" == "--depth" ]]; then if [[ "${options[$n]#-d}" =~ [[:digit:]]+ ]]; then max_depth="${options[$n]#-d}" elif [[ ${options[$((n+1))]} =~ [[:digit:]]+ ]]; then -# if [ ${options[$((n+1))]} -eq ${options[$((n+1))]} 2>/dev/null ]; then max_depth="${options[$((n+1))]}" unset options[$((n+1))] ((++n)) |