Remove `emergency` from the `fastboot reboot` completions.

Bug: N/A
Test: N/A
Change-Id: Ia22f51061c845ea19a697e86ac109c02960251fa
This commit is contained in:
Elliott Hughes 2018-04-04 13:51:54 -07:00
parent f0b9c7ccd2
commit bd1e2dd67d
1 changed files with 1 additions and 1 deletions

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
;;