forked from openkylin/platform_build
Merge "Move adb/fastboot bash completion to their projects."
This commit is contained in:
commit
fc1471cd29
|
@ -350,13 +350,12 @@ function addcompletions()
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dir="sdk/bash_completion"
|
for f in system/core/adb/adb.bash system/core/fastboot/fastboot.bash; do
|
||||||
if [ -d ${dir} ]; then
|
if [ -f $f ]; then
|
||||||
for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
|
|
||||||
echo "including $f"
|
echo "including $f"
|
||||||
. $f
|
. $f
|
||||||
done
|
fi
|
||||||
fi
|
done
|
||||||
|
|
||||||
complete -C "bit --tab" bit
|
complete -C "bit --tab" bit
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue