From bd1e2dd67df25c66d9f2c0c62d5220fb4995e98a Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 4 Apr 2018 13:51:54 -0700 Subject: [PATCH] Remove `emergency` from the `fastboot reboot` completions. Bug: N/A Test: N/A Change-Id: Ia22f51061c845ea19a697e86ac109c02960251fa --- fastboot/fastboot.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastboot/fastboot.bash b/fastboot/fastboot.bash index a60046b6a..dca3b4e0a 100644 --- a/fastboot/fastboot.bash +++ b/fastboot/fastboot.bash @@ -85,7 +85,7 @@ _fastboot() { ;; reboot) if [[ $COMP_CWORD == $i ]]; then - args="bootloader emergency" + args="bootloader" COMPREPLY=( $(compgen -W "${args}" -- "${COMP_WORDS[i]}") ) fi ;;