commit | bd1e2dd67df25c66d9f2c0c62d5220fb4995e98a | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Wed Apr 04 13:51:54 2018 -0700 |
committer | Elliott Hughes <enh@google.com> | Wed Apr 04 13:51:54 2018 -0700 |
tree | 16c9fa9b757b9bfa95aa46405c9d1000ba32c081 | |
parent | f0b9c7ccd23fabfbc1d68a7c8ecb730555cb92ae [diff] |
Remove `emergency` from the `fastboot reboot` completions. Bug: N/A Test: N/A Change-Id: Ia22f51061c845ea19a697e86ac109c02960251fa
diff --git a/fastboot/fastboot.bash b/fastboot/fastboot.bash index a60046b..dca3b4e 100644 --- a/fastboot/fastboot.bash +++ b/fastboot/fastboot.bash
@@ -85,7 +85,7 @@ ;; reboot) if [[ $COMP_CWORD == $i ]]; then - args="bootloader emergency" + args="bootloader" COMPREPLY=( $(compgen -W "${args}" -- "${COMP_WORDS[i]}") ) fi ;;