am cb255e51: am 8985d033: am 88dcfccb: Merge "Add bash completion to envsetup"

* commit 'cb255e514093eaa839b1ac2487bdc2ec60797415':
  Add bash completion to envsetup
This commit is contained in:
Kenny Root 2011-07-15 14:55:26 -07:00 committed by Android Git Automerger
commit 5cc2e94fa8
1 changed files with 25 additions and 0 deletions

View File

@ -191,6 +191,29 @@ function settitle()
fi
}
function addcompletions()
{
local T dir f
# Keep us from trying to run in something that isn't bash.
if [ -z "${BASH_VERSION}" ]; then
return
fi
# Keep us from trying to run in bash that's too old.
if [ ${BASH_VERSINFO[0]} -lt 3 ]; then
return
fi
dir="sdk/bash_completion"
if [ -d ${dir} ]; then
for f in ${dir}/[a-z]*; do
echo "including $f"
. $f
done
fi
}
case `uname -s` in
Linux)
function choosesim()
@ -1138,3 +1161,5 @@ do
. $f
done
unset f
addcompletions