diff options
Diffstat (limited to 'src/devtools/bash_completion.in')
-rw-r--r-- | src/devtools/bash_completion.in | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/devtools/bash_completion.in b/src/devtools/bash_completion.in deleted file mode 100644 index 5e4fe66..0000000 --- a/src/devtools/bash_completion.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash - -_mkarchroot() { - local cur - COMPREPLY=() - _get_comp_words_by_ref cur - - case $cur in - -*) - COMPREPLY=( $( compgen -W '-C -M -c -f -h -n -r -u' -- "$cur" ) ) - ;; - *) - _filedir - return 0 - ;; - esac - - true -} && -complete -F _mkarchroot archroot - - -# ex:et ts=2 sw=2 ft=sh |