commit | e75b66eb97fd1f5c697a84a3da8dd72123541180 | [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 | 69e1a482a86e6c035fb984f6561dba77f0a0dc9d [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 ;;