am 62a2b188: Merge "Avoid complaining about empty directories"

* commit '62a2b1882fb95e960b5889b46fe8f669ddc7c8ac':
  Avoid complaining about empty directories
This commit is contained in:
Kenny Root 2011-07-18 13:45:15 -07:00 committed by Android Git Automerger
commit 4880b43665
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ function addcompletions()
dir="sdk/bash_completion"
if [ -d ${dir} ]; then
for f in ${dir}/[a-z]*.bash; do
for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
echo "including $f"
. $f
done