diff options
author | Yurii Rashkovskii <[email protected]> | 2012-12-02 11:26:22 -0800 |
---|---|---|
committer | Yurii Rashkovskii <[email protected]> | 2012-12-02 11:26:22 -0800 |
commit | 2146953c02fbc71cfeba20ac06d49d755a20a12b (patch) | |
tree | 7d1b963eecc2ad2fbd056659d8ed72404a668a22 /bash_completion | |
parent | f69b5cf6671459651efef3428c07e061031b8c89 (diff) | |
download | kerl-2146953c02fbc71cfeba20ac06d49d755a20a12b.tar.gz kerl-2146953c02fbc71cfeba20ac06d49d755a20a12b.tar.bz2 kerl-2146953c02fbc71cfeba20ac06d49d755a20a12b.zip |
Drop agner support
Closes #32
Diffstat (limited to 'bash_completion')
-rw-r--r-- | bash_completion/kerl | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/bash_completion/kerl b/bash_completion/kerl index 62efa00..559d844 100644 --- a/bash_completion/kerl +++ b/bash_completion/kerl @@ -49,15 +49,7 @@ _kerl() COMPREPLY=( $( compgen -W "build installation $words" -- "$cur") ) ;; update) - COMPREPLY=( $( compgen -W "releases agner" -- "$cur") ) - ;; - agner) - if [ "$COMP_CWORD" -eq 3 ]; then - if [ -f "$HOME/.kerl/otp_builds" ]; then - BUILDS=`cat "$HOME/.kerl/otp_builds" | cut -d "," -f 2` - fi - fi - COMPREPLY=( $( compgen -W "$BUILDS" -- "$cur") ) + COMPREPLY=( $( compgen -W "releases" -- "$cur") ) ;; *) if [ "$COMP_CWORD" -eq 3 ]; then |