Merge "Remove emergency from the fastboot reboot completions."

This commit is contained in:
Treehugger Robot 2018-04-05 02:36:19 +00:00 committed by Gerrit Code Review
commit 243be559a1

View file

@ -85,7 +85,7 @@ _fastboot() {
;;
reboot)
if [[ $COMP_CWORD == $i ]]; then
args="bootloader emergency"
args="bootloader"
COMPREPLY=( $(compgen -W "${args}" -- "${COMP_WORDS[i]}") )
fi
;;